/* ============================================================
   FABIAN MAUL – YOGA & MEDITATION
   Stylesheet v1.0
   ============================================================ */

/* Fonts loaded via <link> in HTML for performance */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --c-dark:        #0b160f;
  --c-forest:      #162217;
  --c-forest-mid:  #1e3325;
  --c-sage:        #4a7c5f;
  --c-sage-light:  #7aaa8a;
  --c-gold:        #c8a05e;
  --c-gold-light:  #e0be8a;
  --c-cream:       #f7f3ec;
  --c-cream-alt:   #ede8df;
  --c-white:       #ffffff;
  --c-text:        #1e2d22;
  --c-text-mid:    #3d5445;
  --c-text-light:  #6b8070;

  /* Typography */
  --ff-serif:      'Playfair Display', Georgia, serif;
  --ff-italic:     'Cormorant Garamond', Georgia, serif;
  --ff-sans:       'DM Sans', system-ui, sans-serif;

  /* Fluid font sizes */
  --fs-xs:    clamp(0.7rem,  1.2vw, 0.8rem);
  --fs-sm:    clamp(0.85rem, 1.5vw, 0.95rem);
  --fs-base:  clamp(1rem,    1.8vw, 1.1rem);
  --fs-lg:    clamp(1.1rem,  2vw,   1.3rem);
  --fs-xl:    clamp(1.3rem,  2.5vw, 1.6rem);
  --fs-2xl:   clamp(1.7rem,  3.5vw, 2.2rem);
  --fs-3xl:   clamp(2.2rem,  5vw,   3.5rem);
  --fs-4xl:   clamp(3rem,    7vw,   5.5rem);
  --fs-hero:  clamp(3.5rem,  9vw,   8rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.24);

  /* Layout */
  --container-max: 1200px;
  --nav-height:    80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-cream);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body, button, a, .gallery__item, .btn, .offering-card, .termin-card {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--c-gold);
  color: var(--c-dark);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  line-height: 1.75;
  font-weight: 300;
}

.serif-italic {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 1.25em;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-smooth),
              height 0.3s var(--ease-smooth),
              border-color 0.3s;
  will-change: transform;
}

.cursor-ring.is-hovering {
  width: 60px; height: 60px;
  border-color: var(--c-sage);
  border-width: 1px;
}

.cursor-ring.is-clicking {
  width: 24px; height: 24px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--c-sage);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-only reveal — safe for CSS columns / masonry layouts */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-dark);
  box-shadow: 0 4px 20px rgba(200, 160, 94, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 160, 94, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-text);
}

.btn--outline-dark:hover {
  background: var(--c-text);
  color: var(--c-cream);
  transform: translateY(-2px);
}

.btn--forest {
  background: var(--c-forest-mid);
  color: var(--c-cream);
}

.btn--forest:hover {
  background: var(--c-sage);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-smooth),
              backdrop-filter 0.4s,
              box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(11, 22, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.nav__logo span {
  color: var(--c-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__links a:hover {
  color: var(--c-white);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: none;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Nav Drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--c-dark);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-smooth);
  padding: calc(var(--nav-height) + 2rem) 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__drawer-links a {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  padding: 0.3rem 0;
}

.nav__drawer-links a:hover {
  color: var(--c-gold);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}

.nav__overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center;
}

.hero__bg-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 22, 15, 0.75) 0%,
    rgba(11, 22, 15, 0.55) 50%,
    rgba(11, 22, 15, 0.80) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero__tagline {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.5s; }

.hero__title-line--accent {
  color: var(--c-gold);
  font-style: italic;
  animation-delay: 0.7s;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 1s forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}

.hero__scroll span {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Floating shape in hero */
.hero__float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__float--1 {
  top: 15%; right: 8%;
  width: 120px; height: 120px;
  border: 1px solid rgba(200, 160, 94, 0.2);
  border-radius: 50%;
  animation: floatOrbit 12s ease-in-out infinite;
}

.hero__float--2 {
  bottom: 20%; left: 6%;
  width: 60px; height: 60px;
  border: 1px solid rgba(122, 170, 138, 0.2);
  border-radius: 50%;
  animation: floatOrbit 8s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.hero__float--3 {
  top: 35%; left: 4%;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(200,160,94,0.3), transparent);
  animation: floatOrbit 10s ease-in-out infinite;
  animation-delay: -5s;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'F M';
  position: absolute;
  top: -0.1em; left: -0.05em;
  font-family: var(--ff-serif);
  font-size: clamp(120px, 20vw, 220px);
  font-weight: 700;
  color: rgba(74, 124, 95, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: clamp(450px, 65vh, 700px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about__img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--c-gold);
  color: var(--c-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}

.about__img-badge-number {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about__img-badge-text {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__quote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--c-sage);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 3px solid var(--c-gold);
  margin: 0.5rem 0;
}

.about__text {
  color: var(--c-text-mid);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(74, 124, 95, 0.15);
}

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

.about__stat-number {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  display: block;
}

.about__stat-label {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: block;
}

/* ============================================================
   OFFERINGS SECTION
   ============================================================ */
.offerings {
  padding: var(--space-3xl) 0;
  background: var(--c-forest);
  position: relative;
  overflow: hidden;
}

.offerings::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.offerings__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.offerings__header .section-label {
  justify-content: center;
  color: var(--c-sage-light);
}

.offerings__header .section-label::before {
  background: var(--c-sage-light);
}

.offerings__title {
  color: var(--c-white);
}

.offerings__subtitle {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 1rem auto 0;
}

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  transform-origin: left;
}

.offering-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200, 160, 94, 0.2);
  transform: translateY(-6px);
}

.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-card__icon {
  width: 56px; height: 56px;
  background: rgba(200, 160, 94, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: background 0.3s;
}

.offering-card:hover .offering-card__icon {
  background: rgba(200, 160, 94, 0.2);
}

.offering-card__icon svg {
  width: 28px; height: 28px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-card__title {
  font-size: var(--fs-xl);
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.offering-card__text {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ============================================================
   BREATHING WIDGET SECTION
   ============================================================ */
.breathe {
  position: relative;
  min-height: 100vh;
  background: #050d08;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.breathe__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.breathe__ambient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.breathe__ambient-circle--1 {
  width: 600px; height: 600px;
  background: #1a4a2e;
  top: -15%; left: -15%;
  animation: ambientFloat 20s ease-in-out infinite;
}

.breathe__ambient-circle--2 {
  width: 400px; height: 400px;
  background: #c8a05e;
  bottom: -10%; right: -10%;
  animation: ambientFloat 15s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.breathe__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.breathe__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.breathe__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  color: var(--c-white);
  font-weight: 400;
}

.breathe__title span {
  color: var(--c-gold);
  font-style: italic;
}

.breathe__widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.breathe__circle-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 158, 107, 0.15);
  transition: transform 0.5s var(--ease-smooth), border-color 0.5s;
}

.breathe__ring--1 {
  width: 100%; height: 100%;
  border-color: rgba(74, 158, 107, 0.15);
  animation: pulse-ring 6s ease-in-out infinite;
}

.breathe__ring--2 {
  width: 86%; height: 86%;
  border-color: rgba(74, 158, 107, 0.22);
  animation: pulse-ring 6s ease-in-out infinite;
  animation-delay: -1s;
}

.breathe__ring--3 {
  width: 72%; height: 72%;
  border-color: rgba(74, 158, 107, 0.3);
  animation: pulse-ring 6s ease-in-out infinite;
  animation-delay: -2s;
}

.breathe__circle-main {
  position: relative;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e4a30, #0a1a10);
  border: 1.5px solid rgba(74, 158, 107, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow:
    0 0 60px rgba(74, 158, 107, 0.15),
    inset 0 0 30px rgba(0,0,0,0.5),
    0 0 0 8px rgba(74, 158, 107, 0.06);
  transform: scale(1);
  transition: transform 0s linear,
              box-shadow 0.5s,
              border-color 0.5s,
              background 0.5s;
  will-change: transform;
  z-index: 2;
}

.breathe__circle-main.expanding {
  transition: transform var(--breathe-duration, 4s) cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s,
              border-color 0.5s;
}

.breathe__circle-main.contracting {
  transition: transform var(--breathe-duration, 6s) cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s,
              border-color 0.5s;
}

.breathe__circle-text {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--c-white);
  letter-spacing: 0.05em;
  transition: opacity 0.4s;
  text-align: center;
  line-height: 1.2;
}

.breathe__circle-seconds {
  font-family: var(--ff-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}

.breathe__phase-text {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: var(--c-white);
  letter-spacing: 0.05em;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.breathe__instruction {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  min-height: 1.5rem;
  transition: opacity 0.3s;
}

.breathe__rounds {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.breathe__round-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s, transform 0.3s;
}

.breathe__round-dot.active {
  background: var(--c-gold);
  transform: scale(1.3);
}

.breathe__round-dot.done {
  background: var(--c-sage);
}

.breathe__controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.breathe__btn {
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s var(--ease-smooth);
  cursor: none;
}

.breathe__btn--start {
  background: var(--c-gold);
  color: var(--c-dark);
  box-shadow: 0 4px 24px rgba(200, 160, 94, 0.3);
}

.breathe__btn--start:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 160, 94, 0.4);
}

.breathe__btn--stop {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.breathe__btn--stop:hover {
  background: rgba(255,255,255,0.12);
}

.breathe__note {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.25);
  text-align: center;
  max-width: 320px;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--c-cream-alt);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery__title {
  color: var(--c-text);
}

.gallery__subtitle {
  color: var(--c-text-light);
  margin-top: 0.75rem;
}

.gallery__grid {
  columns: 3;
  column-gap: 1rem;
  gap: 1rem;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: none;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 15, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.gallery__item-overlay svg {
  width: 32px; height: 32px;
  stroke: white;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item:hover .gallery__item-overlay {
  background: rgba(11, 22, 15, 0.45);
}

.gallery__item:hover .gallery__item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery__more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 8, 0.96);
  backdrop-filter: blur(16px);
  cursor: none;
}

.lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-smooth);
}

.lightbox.open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: fixed;
  top: 1.5rem; right: 2rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s;
  z-index: 2;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.15);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
  padding: var(--space-3xl) 0;
  background: var(--c-cream);
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  gap: 1rem;
  flex-wrap: wrap;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.blog-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  color: var(--c-text);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: 1.7;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-sage);
  margin-top: auto;
  transition: gap 0.3s, color 0.3s;
}

.blog-card__link:hover {
  gap: 0.75rem;
  color: var(--c-forest);
}

/* ============================================================
   APPOINTMENTS / TERMINE SECTION
   ============================================================ */
.termine {
  padding: var(--space-3xl) 0;
  background: var(--c-forest);
  position: relative;
}

.termine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.termine__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.termine__header .section-label {
  justify-content: center;
  color: var(--c-sage-light);
}

.termine__header .section-label::before {
  background: var(--c-sage-light);
}

.termine__title {
  color: var(--c-white);
}

.termine__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.termin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.termin-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200, 160, 94, 0.2);
  transform: translateX(6px);
}

.termin-card__date {
  text-align: center;
  min-width: 72px;
  align-self: center;
}

.termin-card__day {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  display: block;
}

.termin-card__month {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 0.2rem;
}

.termin-card__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

.termin-card__info {
  flex: 1;
}

.termin-card__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.badge--class    { background: rgba(74, 124, 95, 0.25);  color: var(--c-sage-light); }
.badge--workshop { background: rgba(200, 160, 94, 0.2);  color: var(--c-gold-light); }
.badge--retreat  { background: rgba(147, 112, 219, 0.2); color: #c0a0ff; }
.badge--online   { background: rgba(100, 180, 255, 0.15); color: #90c8ff; }

.termin-card__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  color: var(--c-white);
  margin-bottom: 0.35rem;
}

.termin-card__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.termin-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}

.termin-card__meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--c-sage-light);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.termin-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  align-self: center;
}

.termin-card__price {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  color: var(--c-white);
}

.termin-card__spots {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}

.termin-card__spots.few {
  color: #ff9566;
}

/* ---- Termin Beschreibung (Inline Reveal) ---- */
.termin-card__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.termin-card:hover .termin-card__desc {
  max-height: 10em;
  opacity: 1;
  margin-top: 0.7rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.contact__bg-text {
  position: absolute;
  bottom: -0.15em; right: -0.05em;
  font-family: var(--ff-serif);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__title {
  color: var(--c-white);
}

.contact__text {
  color: rgba(255,255,255,0.5);
}

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

.contact__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  font-size: var(--fs-base);
}

.contact__link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  border-color: rgba(200, 160, 94, 0.3);
  transform: translateX(4px);
}

.contact__link svg {
  width: 20px; height: 20px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--c-white);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  background: rgba(255,255,255,0.07);
}

.form-group textarea {
  min-height: 120px;
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  display: none;
}

.form-message.success {
  background: rgba(74, 124, 95, 0.15);
  border: 1px solid rgba(74, 124, 95, 0.3);
  color: var(--c-sage-light);
  display: block;
}

.form-message.error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: #f08080;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__brand-name {
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.footer__brand-tagline {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--c-gold); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer__social-link:hover {
  background: rgba(200, 160, 94, 0.15);
  border-color: rgba(200, 160, 94, 0.3);
  color: var(--c-gold);
}

.footer__social-link svg {
  width: 18px; height: 18px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.25);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   ANIMATIONS (Keyframes)
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

@keyframes floatOrbit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(10px) rotate(-3deg); }
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.08); opacity: 0.3; }
}

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(3%, -3%) scale(1.05); }
  66%       { transform: translate(-2%, 2%) scale(0.97); }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gallery hidden items (load more) */
.gallery__item--hidden {
  display: none !important;
}

/* Loading animation for gallery */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.gallery__placeholder {
  background: linear-gradient(90deg,
    rgba(200,200,200,0.1) 25%,
    rgba(200,200,200,0.2) 50%,
    rgba(200,200,200,0.1) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  min-height: 200px;
  border-radius: var(--radius-md);
}

/* ============================================================
   EMPTY STATE (no posts/appointments)
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.35);
}

.empty-state p {
  font-size: var(--fs-lg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .offerings__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__img-badge {
    bottom: 1rem;
    right: 1rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .termin-card {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }

  .termin-card__action {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
    --space-3xl: 5rem;
    --space-2xl: 3rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery__grid {
    columns: 2;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand { grid-column: 1; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .termin-card {
    grid-template-columns: auto 1fr;
  }

  .termin-card__divider { display: none; }

  .breathe__circle-wrap {
    width: 240px; height: 240px;
  }

  .breathe__circle-main {
    width: 140px; height: 140px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    columns: 1;
  }

  .offerings__grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .termin-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .termin-card:hover {
    transform: none;
  }

  .termin-card__date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    text-align: left;
  }

  .termin-card__action {
    flex-direction: row;
    align-items: center;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-sage-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

