/*
Theme Name: Sukhino
Theme URI: https://www.sukhino.de
Author: Sukhino
Author URI: https://www.sukhino.de
Description: Custom WordPress Theme for SUKHINO – Yoga, Ayurveda & Achtsamkeit
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sukhino
*/

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

:root {
  --warm-stone: #e8e0d4;
  --deep-ink: #1a1a1a;
  --terracotta: #c07a62;
  --sage: #a3b18a;
  --cream: #f7f3ec;
  --gold: #b8a07a;
  --stone-light: #f0ebe3;
  --terracotta-soft: #d4967e;
  --sage-muted: #bcc9ac;
  --ink-light: #4a4a4a;
}

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

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background-color: var(--cream);
  color: var(--deep-ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paper texture overlay via SVG filter */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ========================================
   SVG DEFINITIONS (clip paths & decorations)
   ======================================== */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--warm-stone);
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.section-number::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -5px;
  right: -5px;
  height: 2px;
  background: var(--terracotta);
  opacity: 0.4;
  transform: rotate(-1.5deg);
}

.section-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.handwritten {
  font-family: 'Kalam', cursive;
  font-weight: 300;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1340px;
}

section {
  position: relative;
}

/* Thin editorial rule */
.rule {
  border: none;
  height: 1px;
  background: var(--deep-ink);
  opacity: 0.1;
  margin: 0;
}

.rule--gold {
  background: var(--gold);
  opacity: 0.35;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.nav--scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  max-width: 1340px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--deep-ink);
}

.nav__logo img {
  width: 38px;
  height: auto;
  opacity: 0.9;
}

.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  list-style: none;
}

.nav__links a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--deep-ink);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.4s ease;
}

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

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

/* Mobile hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep-ink);
  margin: 5px 0;
  transition: all 0.35s ease;
  border-radius: 1px;
}

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

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(247, 243, 236, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--deep-ink);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav__mobile a:hover {
  color: var(--terracotta);
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--deep-ink);
  margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.hero__title em svg {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: 12px;
  overflow: visible;
}

.hero__desc {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: url(#organic-blob-1);
}

/* Organic accent behind hero image */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110%;
  height: 110%;
  background: var(--sage);
  opacity: 0.12;
  clip-path: url(#organic-blob-2);
  z-index: -1;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border: 1px solid var(--deep-ink);
  color: var(--deep-ink);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  border-radius: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: var(--cream);
  border-color: var(--deep-ink);
}

.btn--filled {
  background: var(--deep-ink);
  color: var(--cream);
  border-color: var(--deep-ink);
}

.btn--filled::before {
  background: var(--terracotta);
}

.btn--filled:hover {
  border-color: var(--terracotta);
}

.btn--terracotta {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn--terracotta::before {
  background: var(--terracotta);
}

.btn--terracotta:hover {
  color: var(--cream);
  border-color: var(--terracotta);
}

.btn__arrow {
  transition: transform 0.3s ease;
  font-size: 1.1em;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ========================================
   AKTUELLES / EVENT
   ======================================== */
.event {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--deep-ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f7f3ec' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.event__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.event__section-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
}

.event__rule {
  flex: 1;
  height: 1px;
  background: rgba(247, 243, 236, 0.12);
}

.event__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.event__date-block {
  position: relative;
}

.event__date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--terracotta-soft);
  letter-spacing: -0.04em;
}

.event__date-month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  margin-top: 0.3rem;
}

.event__date-year {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0.35;
  margin-top: 0.3rem;
}

/* Brush stroke decoration near date */
.event__date-block::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--terracotta);
  opacity: 0.5;
  border-radius: 2px;
  transform: rotate(-2deg);
}

.event__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.event__desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247, 243, 236, 0.75);
  margin-bottom: 2rem;
  max-width: 580px;
}

.event__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}

.event__meta span {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 243, 236, 0.65);
}

.event .btn {
  border-color: var(--terracotta-soft);
  color: var(--terracotta-soft);
}

.event .btn::before {
  background: var(--terracotta);
}

.event .btn:hover {
  color: var(--cream);
  border-color: var(--terracotta);
}

/* ========================================
   EINZELANGEBOTE
   ======================================== */
.angebote {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

.angebote__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.angebote__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.angebote__subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.75;
}

/* Decorative organic element */
.angebote__header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 140px;
  height: 140px;
  background: var(--sage);
  opacity: 0.08;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
  transform: translateY(-50%);
}

.angebot-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  position: relative;
}

.angebot-card:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.angebot-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--warm-stone);
  line-height: 1;
  padding-top: 0.2rem;
  position: relative;
}

/* Small brush mark beside number */
.angebot-card__num::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 4px;
  height: 22px;
  background: var(--terracotta);
  opacity: 0.35;
  border-radius: 2px;
  transform: translateY(-50%) rotate(4deg);
}

.angebot-card__content {
  max-width: 680px;
}

.angebot-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.angebot-card__text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 0.8rem;
}

.angebot-card__list {
  list-style: none;
  margin: 0.8rem 0 1rem 0;
  padding: 0;
}

.angebot-card__list li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-light);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.angebot-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  opacity: 0.5;
  border-radius: 50% 40% 50% 45%;
}

.angebot-card__footer {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.5rem;
}

.angebot-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-ink);
  letter-spacing: 0.01em;
}

.angebot-card__note {
  font-family: 'Kalam', cursive;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--terracotta);
  opacity: 0.85;
}

/* ========================================
   NATURE IMAGE INTERLUDE
   ======================================== */
.interlude {
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}

.interlude__image-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: end;
}

.interlude__img {
  width: 100%;
  height: auto;
  display: block;
}

.interlude__img--organic-1 {
  clip-path: url(#organic-rect-1);
}

.interlude__img--organic-2 {
  clip-path: url(#organic-rect-2);
}

/* ========================================
   KURSE
   ======================================== */
.kurse {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--stone-light);
  position: relative;
  overflow: hidden;
}

/* Organic shape background decoration */
.kurse::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: var(--sage);
  opacity: 0.06;
  border-radius: 50% 35% 55% 40% / 40% 55% 35% 50%;
  pointer-events: none;
}

.kurse__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.kurse__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.kurse__subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.75;
}

.kurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.kurs-card {
  background: var(--cream);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  position: relative;
  border: 1px solid rgba(26, 26, 26, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Slight irregularity to card shape */
.kurs-card:nth-child(1) {
  border-radius: 2px 4px 2px 6px;
}
.kurs-card:nth-child(2) {
  border-radius: 5px 2px 4px 2px;
}
.kurs-card:nth-child(3) {
  border-radius: 2px 6px 3px 2px;
}
.kurs-card:nth-child(4) {
  border-radius: 4px 2px 5px 3px;
}

.kurs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}

.kurs-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--warm-stone);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.kurs-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.kurs-card__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
}

.kurs-card__schedule {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}

.kurs-card__location {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-light);
  margin-bottom: 0.9rem;
}

.kurs-card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.kurs-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-ink);
}

.kurs-card__note {
  font-family: 'Kalam', cursive;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--terracotta);
  opacity: 0.8;
  margin-top: 0.4rem;
}

/* ========================================
   PHILOSOPHY / QUOTE
   ======================================== */
.philosophy {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.philosophy__image-wrap {
  position: relative;
}

.philosophy__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: url(#organic-blob-3);
}

.philosophy__image-wrap::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  opacity: 0.08;
  clip-path: url(#organic-blob-3);
  z-index: -1;
}

.philosophy__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--deep-ink);
  position: relative;
  padding-left: 2rem;
}

.philosophy__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--terracotta), var(--sage));
  opacity: 0.4;
  border-radius: 2px;
}

/* ========================================
   UBER MICH
   ======================================== */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--deep-ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle background organic shape */
.about::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--terracotta);
  opacity: 0.04;
  border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.about__image-col {
  position: relative;
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: url(#organic-portrait);
}

/* Organic shape accent behind portrait */
.about__image-wrap::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  background: var(--sage);
  opacity: 0.08;
  clip-path: url(#organic-portrait);
  z-index: -1;
}

.about__qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about__qual {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(247, 243, 236, 0.15);
  color: rgba(247, 243, 236, 0.65);
  border-radius: 1px;
}

.about__content {
  padding-top: 1rem;
}

.about__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 1rem;
}

.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.7);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(192, 122, 98, 0.4);
}

.about__citation {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 243, 236, 0.4);
  margin-bottom: 2.2rem;
  padding-left: 1.5rem;
}

.about__text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247, 243, 236, 0.7);
  margin-bottom: 1.1rem;
}

.about__sign-off {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--terracotta-soft);
  margin-top: 1.5rem;
}

/* ========================================
   KONTAKT
   ======================================== */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

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

.contact__left {
  position: relative;
}

.contact__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.contact__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.contact__info-heading {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact__info a {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--deep-ink);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__info a:hover {
  color: var(--terracotta);
}

.contact__info-icon {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Nature image in contact */
.contact__nature {
  margin-top: 2.5rem;
  max-width: 280px;
}

.contact__nature img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: url(#organic-small);
  opacity: 0.85;
}

/* Form */
.contact__form {
  position: relative;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  background: transparent;
  color: var(--deep-ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--terracotta);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--terracotta);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
  cursor: pointer;
}

/* Contact Form 7 styling */
.wpcf7 .form-group {
  margin-bottom: 1.5rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  background: transparent;
  color: var(--deep-ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-bottom-color: var(--terracotta);
}

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  background: var(--deep-ink);
  color: var(--cream);
  border: 1px solid var(--deep-ink);
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-radius: 0;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.wpcf7-response-output {
  font-size: 0.85rem;
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--sage);
  border-radius: 2px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

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

.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-light);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ========================================
   PAGE TEMPLATES — WordPress Editor Content
   ======================================== */
.page-text__content h2,
.page-angebot-hero + section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.page-text__content h3,
.page-angebot-hero + section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  margin: 2rem 0 0.8rem;
}

.page-text__content p,
.page-angebot-hero + section p {
  margin-bottom: 1.1rem;
}

.page-text__content ul,
.page-text__content ol,
.page-angebot-hero + section ul,
.page-angebot-hero + section ol {
  margin: 1rem 0 1.5rem 1.2rem;
}

.page-text__content li,
.page-angebot-hero + section li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

.page-text__content a,
.page-angebot-hero + section a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.page-text__content a:hover,
.page-angebot-hero + section a:hover {
  color: var(--deep-ink);
}

.page-text__content blockquote,
.page-angebot-hero + section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 2px solid var(--terracotta);
  border-left-color: rgba(192, 122, 98, 0.4);
  margin: 2rem 0;
  color: var(--ink-light);
}

.page-text__content img,
.page-angebot-hero + section img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--left {
  transform: translateX(-24px) translateY(8px);
}

.reveal--right {
  transform: translateX(24px) translateY(8px);
}

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

/* stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__content {
    order: 2;
    text-align: center;
  }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__tag { justify-content: center; }
  .hero__image-wrap { order: 1; max-width: 500px; margin: 0 auto; }

  .event__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .event__date-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }
  .event__date-block::after { display: none; }

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

  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .philosophy__image-wrap { max-width: 450px; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image-col { max-width: 400px; }

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

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

@media (max-width: 600px) {
  .angebot-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .angebot-card__num {
    font-size: 1.5rem;
  }
  .angebot-card__num::after { display: none; }

  .hero { padding: 6rem 0 3rem; }

  .hero__title {
    font-size: 2.5rem;
  }

  .event__date-day {
    font-size: 4rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
