/* ════════════════════════════════════════════════
   HERZENSWERKE — Stylesheet
   ════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --cream: #FAF8F3;
  --off-white: #FEFEFC;
  --sage: #B0C5A6;
  --sage-deep: #69956A;
  --sage-light: #CADDC4;
  --sage-mist: #E5F0E0;
  --beige: #E4CFA6;
  --beige-warm: #C2A26C;
  --beige-mist: #F5EDD8;
  --blush: #F3EAE2;
  --ink: #27190A;
  --ink-soft: #5C4B35;
  --ink-light: #A08565;

  --font-brand: 'Dancing Script', cursive;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);

  --container: 1240px;
  --gutter: 40px;
}

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

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

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: none;
}

.body-list {
  list-style-type: circle;
  color: var(--ink-soft);
  margin: 1rem 0;
}

.body-list li {
  margin: 12px 12px;
}


/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 7px;
  height: 7px;
  background: var(--sage-deep);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100002;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--sage-deep);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s, border-color 0.3s;
  opacity: 0.55;
}

.cursor-follower.hovering {
  width: 52px;
  height: 52px;
  opacity: 0.25;
  background: var(--sage-light);
  border-color: transparent;
}

.cursor-follower.clicking {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 28px var(--gutter);
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(254, 254, 252, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 16px var(--gutter);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-brand);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--sage-deep);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--sage-deep);
  transition: left 0.35s var(--ease), right 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0;
  right: 0;
}

.nav-links a.active {
  color: var(--ink);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 600;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 25, 10, 0.35);
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.mobile-menu-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--cream);
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 48px 48px;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--ink-soft);
  padding: 6px;
  transition: color 0.3s, transform 0.3s;
}

.mobile-menu-close:hover {
  color: var(--ink);
  transform: rotate(90deg);
}

.mobile-menu-brand {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 48px;
  opacity: 0.3;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(39, 25, 10, 0.07);
  transition: color 0.3s, transform 0.35s var(--ease);
}

.mobile-nav-link:hover {
  color: var(--sage-deep);
  transform: translateX(10px);
}

.mobile-menu-footer {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.mobile-menu-footer a {
  color: var(--ink-light);
  transition: color 0.3s, transform 0.3s;
}

.mobile-menu-footer a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(172, 200, 162, 0.55), transparent 70%);
  top: -10%;
  right: -10%;
}

.hero-blob-2 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(176, 212, 168, 0.35), transparent 70%);
  bottom: -5%;
  left: -5%;
}

.hero-blob-3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(200, 226, 192, 0.38), transparent 70%);
  top: 40%;
  left: 30%;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(122, 150, 116, 0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.botanical {
  position: absolute;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  opacity: 0;
  animation: fadeUpDelayed 0.9s var(--ease) forwards 0.9s;
}

.botanical-left {
  left: 4%;
}

.botanical-right {
  right: 4%;
  transform: scaleX(-1);
}

@keyframes fadeUpDelayed {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease) forwards 0.2s;
}

.hero-brand {
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.75s var(--ease-out) forwards 0.3s;
}

.hero-brand img {
  display: block;
  max-width: clamp(280px, 55vw, 600px);
  height: auto;
  margin: 0 auto;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  opacity: 0;
  animation: fadeUp 0.55s var(--ease) forwards 0.55s;
}

.hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige-warm), transparent);
}

.hero-divider svg {
  opacity: 0.8;
  flex-shrink: 0;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  color: var(--ink-soft);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.65s var(--ease) forwards 0.7s;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.55s var(--ease) forwards 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.scroll-line-wrap {
  width: 1px;
  height: 56px;
  overflow: hidden;
  background: rgba(160, 133, 101, 0.2);
}

.scroll-line {
  width: 1px;
  height: 100%;
  background: var(--beige-warm);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── ABOUT ─── */
.about {
  padding: 130px 0;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 218, 176, 0.52), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  align-self: start;
  margin-top: 24px;
}

.about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(39, 25, 10, 0.1);
}

.about-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--sage-light);
  border-radius: 2px;
  z-index: -1;
  pointer-events: none;
}

.about-img-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.about-img-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.about-img-badge strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}

.about-text {
  padding-top: 16px;
}

.about-text .section-title {
  margin-bottom: 28px;
}

.about-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 18px;
}

.about-body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 32px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--sage);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-mist);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.tag:hover {
  background: var(--sage-light);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
}

.about-signature {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-deep);
}

/* ─── GALLERY / MASONRY ─── */
.gallery {
  padding: 130px 0;
  background: var(--cream);
}

.gallery-header {
  margin-bottom: 56px;
}

.gallery-header .section-title {
  margin-top: 8px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 10px;
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--beige);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.5s;
}

.grid-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.grid-item:hover {
  box-shadow: 0 16px 48px rgba(39, 25, 10, 0.12);
  z-index: 2;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.grid-item:hover img {
  transform: scale(1.07);
}

.gi-wide {
  grid-column: span 2;
}

.gi-tall {
  grid-row: span 2;
}

.gi-medium {
  grid-column: span 2;
}

.gi-reg {
  grid-column: span 1;
  grid-row: span 1;
}

.grid-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.grid-item:hover .grid-shine {
  opacity: 1;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(39, 25, 10, 0.72) 0%, rgba(39, 25, 10, 0.15) 55%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.grid-item.has-overlay:hover .grid-overlay {
  opacity: 1;
}

.grid-overlay-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.3;
  transform: translateY(10px);
  transition: transform 0.45s var(--ease);
}

.grid-item.has-overlay:hover .grid-overlay-text {
  transform: translateY(0);
}

.grid-overlay-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.45s var(--ease) 0.05s, opacity 0.4s var(--ease) 0.05s, background 0.3s;
}

.grid-item.has-btn:hover .grid-overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.grid-overlay-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 130px 0;
  background: var(--off-white);
}

.testimonials .container {
  margin-bottom: 56px;
}

.testimonials .section-title {
  margin-top: 8px;
}

.testimonials-stage {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding: 0 var(--gutter);
}

.testimonials-fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  height: 140px;
}

.testimonials-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--off-white) 0%, transparent 100%);
}

.testimonials-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--off-white) 0%, transparent 100%);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  gap: 14px;
  animation: scrollUp 52s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.t-card {
  background: #fff;
  border: 1px solid rgba(189, 201, 180, 0.35);
  border-radius: 10px;
  padding: 24px 24px 20px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(39, 25, 10, 0.08);
}

.t-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--sage-light);
  position: absolute;
  top: -8px;
  left: 16px;
  pointer-events: none;
}

.t-stars {
  color: var(--beige-warm);
  font-size: 0.8rem;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.t-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.t-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--ink-light);
}

/* ─── CTA WORKSHOP ─── */
.cta-workshop {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  text-align: center;
  background: linear-gradient(145deg, #8FAF85 0%, #6D9070 50%, #5A7A5C 100%);
}

.cta-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-circle-1 {
  width: 600px;
  height: 600px;
  top: -250px;
  right: -160px;
}

.cta-circle-2 {
  width: 380px;
  height: 380px;
  bottom: -150px;
  left: -100px;
}

.cta-botanical {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  color: #fff;
  line-height: 1.12;
  margin: 18px 0 24px;
}

.cta-body {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px;
  background: #fff;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn-text,
.cta-btn-arrow {
  position: relative;
  z-index: 1;
}

.cta-btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(5px);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-logo:hover {
  color: var(--sage-light);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-nav-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
  display: block;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-social-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── SCROLL REVEAL ─── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal {
  transform: translateY(24px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── RESPONSIVE ─── */

@media (min-width: 1400px) {
  .masonry-grid {
    padding: 0 60px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 32px;
  }

  .about-inner {
    gap: 56px;
  }

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

  .gi-wide {
    grid-column: span 2;
  }

  .gi-medium {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-social {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .footer-social-label {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    padding: 22px var(--gutter);
  }

  .nav.scrolled {
    padding: 14px var(--gutter);
  }

  /* Cursor off on touch devices */
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  button {
    cursor: pointer;
  }

  a {
    cursor: pointer;
  }

  /* Hero */
  .botanical {
    width: 90px;
  }

  .botanical-left {
    left: 1%;
  }

  .botanical-right {
    right: 1%;
  }

  /* About */
  .about {
    padding: 90px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-image-wrap {
    order: -1;
    margin-top: 0;
  }

  .about-img-frame img {
    height: 420px;
  }

  .about-img-badge {
    left: 16px;
  }

  .about-img-accent {
    bottom: -16px;
    right: -16px;
  }

  /* Gallery */
  .gallery {
    padding: 90px 0;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gi-wide {
    grid-column: span 2;
  }

  .gi-medium {
    grid-column: span 2;
  }

  .gi-tall {
    grid-row: span 2;
  }

  /* Testimonials */
  .testimonials {
    padding: 90px 0;
  }

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

  /* CTA */
  .cta-workshop {
    padding: 110px 0;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-social {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .footer-social-label {
    margin-bottom: 0;
  }

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

  /* ── Mobile: Opacity-only fades — no transform animations ── */

  /* Hero: fade in, no translateY */
  .hero-eyebrow {
    animation: fadeIn 0.3s ease forwards 0.1s;
    transform: translateY(0);
  }

  .hero-brand {
    animation: fadeIn 0.35s ease forwards 0.15s;
    transform: translateY(0);
  }

  .hero-divider {
    animation: fadeIn 0.3s ease forwards 0.2s;
  }

  .hero-tagline {
    animation: fadeIn 0.3s ease forwards 0.25s;
    transform: translateY(0);
  }

  .scroll-indicator {
    animation: fadeIn 0.3s ease forwards 0.3s;
  }

  .botanical {
    animation: fadeIn 0.35s ease forwards 0.3s;
  }

  /* Stop the infinite scroll-line animation */
  .scroll-line {
    animation: none;
    opacity: 0.45;
    transform: translateY(0);
  }

  /* Page-hero: fade in, no translateY */
  .page-hero-eyebrow {
    animation: fadeIn 0.3s ease forwards 0.1s;
    transform: translateY(0);
  }

  .page-hero-title {
    animation: fadeIn 0.35s ease forwards 0.15s;
    transform: translateY(0);
  }

  .page-hero-desc {
    animation: fadeIn 0.3s ease forwards 0.2s;
    transform: translateY(0);
  }

  .page-hero-divider {
    animation: fadeIn 0.3s ease forwards 0.25s;
  }

  /* Reduce expensive blur on decorative blobs */
  .page-hero-blob {
    filter: blur(30px);
  }

  .hero-blob {
    filter: blur(40px);
  }

  /* Reveal: opacity only, no transform movement */
  .reveal,
  .reveal-left,
  .reveal-right {
    transform: none !important;
    transition: opacity 0.4s ease;
  }

  /* Grid items: fade only */
  .grid-item {
    transform: none !important;
    transition: opacity 0.35s ease;
  }

  /* Hover transitions aren't triggered on touch — remove */
  .about-img-frame img {
    transition: none;
  }

  .grid-item img {
    transition: none;
  }

  .grid-overlay {
    transition: opacity 0.25s ease;
  }

  .grid-overlay-text {
    transition: none;
    transform: none;
  }

  .grid-overlay-btn {
    transition: none;
    transform: none;
  }

  .tape-photo-frame {
    transition: none;
  }

  .t-card {
    transition: none;
  }

  .tag {
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  /* Mobile-menu */
  .mobile-menu {
    transition: transform 0.28s ease;
  }

  .mobile-menu-overlay {
    transition: opacity 0.25s ease;
  }

  /* Testimonials scroll on compositor */
  .testimonials-track {
    will-change: transform;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 20px;
  }

  .hero-brand img {
    max-width: 220px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .botanical {
    display: none;
  }

  .about {
    padding: 70px 0;
  }

  .about-img-frame img {
    height: 340px;
  }

  .gallery {
    padding: 70px 0;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 8px;
  }

  .gi-wide,
  .gi-medium,
  .gi-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonials {
    padding: 70px 0;
  }

  .testimonials-stage {
    height: 520px;
  }

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

  .cta-workshop {
    padding: 90px 0;
  }

  .cta-btn {
    padding: 16px 36px;
    font-size: 0.72rem;
  }

  .footer {
    padding: 60px 0 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-social {
    grid-column: span 2;
  }

  .footer-legal {
    gap: 16px;
  }

  .mobile-menu {
    padding: 70px 32px 40px;
  }

  .mobile-nav-link {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-eyebrow,
  .hero-brand,
  .hero-divider,
  .hero-tagline,
  .scroll-indicator,
  .botanical {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ════════════════════════════════════════════════
   SUBPAGES — Shared Styles
   ════════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  padding: 200px var(--gutter) 110px;
  background: var(--cream);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-blob-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(172, 200, 162, 0.52), transparent 70%);
  top: -10%;
  right: -10%;
}

.page-hero-blob-2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(176, 212, 168, 0.33), transparent 70%);
  bottom: -5%;
  left: -5%;
}

.page-hero-blob-3 {
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(200, 226, 192, 0.36), transparent 70%);
  top: 35%;
  left: 25%;
}

.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(122, 150, 116, 0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease) forwards 0.2s;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--ink);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.75s var(--ease-out) forwards 0.35s;
}

.page-hero-desc {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 560px;
  margin: 24px auto 0;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.65s var(--ease) forwards 0.55s;
}

.page-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
  max-width: 200px;
  opacity: 0;
  animation: fadeUp 0.55s var(--ease) forwards 0.68s;
}

.page-hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige-warm), transparent);
}

.page-hero-divider svg {
  opacity: 0.8;
  flex-shrink: 0;
}

/* ─── TAPE PHOTO ─── */
.tape-photo {
  position: relative;
  display: block;
}

.tape-photo-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 3px 10px 36px rgba(39, 25, 10, 0.13);
  transition: transform 0.75s var(--ease-out), box-shadow 0.75s var(--ease-out);
}

.tape-photo-frame img {
  width: 100%;
  height: 500px;
  object-position: top;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.tape-photo--left .tape-photo-frame {
  transform: rotate(-2.5deg);
}

.tape-photo--right .tape-photo-frame {
  transform: rotate(2deg);
}

.tape-photo:hover .tape-photo-frame img {
  transform: scale(1.03);
}

.tape-photo--left:hover .tape-photo-frame {
  transform: rotate(-2.5deg);
  box-shadow: 5px 12px 28px rgba(39, 25, 10, 0.18), 8px 42px 65px rgba(39, 25, 10, 0.12);
}

.tape-photo--right:hover .tape-photo-frame {
  transform: rotate(2deg);
  box-shadow: -5px 12px 28px rgba(39, 25, 10, 0.18), -8px 42px 65px rgba(39, 25, 10, 0.12);
}

.tape {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(-0.8deg);
  width: 72px;
  height: 22px;
  background: rgba(255, 215, 50, 0.55);
  z-index: 10;
  border-radius: 1px;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.1) 3px, rgba(255, 255, 255, 0.1) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(0, 0, 0, 0.04) 7px, rgba(0, 0, 0, 0.04) 8px);
  box-shadow: 0 2px 6px rgba(39, 25, 10, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.tape--left {
  left: 28%;
  transform: translateX(-50%) rotate(-3deg);
}

.tape--right {
  left: 72%;
  transform: translateX(-50%) rotate(2deg);
}

.tape--angled {
  transform: translateX(-50%) rotate(-5deg);
  width: 64px;
}

/* ─── ÜBER UNS — SISTERS ─── */
.sisters-intro {
  padding: 80px 0 0;
  background: var(--off-white);
}

.sisters-intro-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sisters-intro-inner .section-title {
  margin-bottom: 20px;
}

.sisters-intro-body {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.sister-section {
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}

.sister-section--cream {
  background: var(--cream);
}

.sister-section--white {
  background: var(--off-white);
}

.sister-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.sister-image-wrap {
  position: relative;
  align-self: start;
  margin-top: 20px;
}

.sister-img-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 50%;
  height: 50%;
  border: 2px solid var(--sage-light);
  border-radius: 2px;
  z-index: -1;
  pointer-events: none;
}

.sister-img-accent--left {
  right: auto;
  left: -22px;
}

.sister-name {
  font-family: var(--font-brand);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.sister-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 28px;
}

.sister-divider {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 24px;
}

.sister-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sister-body {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.88;
  margin-bottom: 22px;
}

.sister-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sister-signature {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-top: 28px;
}

/* ─── Sister expandable (read more) ─── */
.sister-expandable {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sister-expandable.is-open {
  max-height: 2000px;
}

.sister-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  cursor: pointer;
  transition: color 0.25s, gap 0.3s var(--ease);
  background: none;
  border: none;
  padding: 0;
}

.sister-read-more:hover {
  color: var(--ink);
  gap: 12px;
}

.sister-read-more-arrow {
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.sister-read-more[aria-expanded="true"] .sister-read-more-arrow {
  transform: rotate(180deg);
}

/* ─── RAUM PAGE ─── */
.raum-gallery {
  padding: 80px 0 60px;
  background: var(--off-white);
}

.raum-gallery .gallery-header {
  margin-bottom: 48px;
}

.map-section {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
  overflow: hidden;
}

.map-section-header {
  margin-bottom: 72px;
}

.map-section-header .section-title {
  margin-top: 8px;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
  margin-top: 56px;
}

.map-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-tile {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(39, 25, 10, 0.12);
}

.map-tile iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.75) sepia(0.08);
}

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  box-shadow: 0 4px 20px rgba(39, 25, 10, 0.06);
}

.map-address-icon {
  color: var(--sage-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-address-text {
  text-align: left;
  line-height: 1.5;
}

.map-address-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.map-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.map-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--beige);
}

.map-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.map-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 25, 10, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease);
}

.map-photo-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  color: #fff;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.map-photo-item:hover img {
  transform: scale(1.07);
}

.map-photo-item:hover .map-photo-overlay {
  background: rgba(39, 25, 10, 0.32);
}

.map-photo-item:hover .map-photo-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22, 14, 6, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-img-wrap {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 88vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 14px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ─── WORKSHOP SECTIONS ─── */
.workshop-item {
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}

.workshop-item--cream {
  background: var(--cream);
}

.workshop-item--white {
  background: var(--off-white);
}

.workshop-item+.workshop-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige), transparent);
}

.workshop-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.workshop-inner--reverse {
  direction: rtl;
}

.workshop-inner--reverse>* {
  direction: ltr;
}

.workshop-image-wrap {
  position: relative;
  align-self: start;
  margin-top: 16px;
}

.workshop-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  height: 40%;
  border: 2px solid var(--beige);
  border-radius: 2px;
  z-index: -1;
}

.workshop-inner--reverse .workshop-img-accent {
  right: auto;
  left: -20px;
}

.workshop-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  display: block;
  margin-bottom: -12px;
}

.workshop-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 14px;
}

.workshop-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.workshop-desc {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.88;
  margin-bottom: 28px;
}

.workshop-desc p {
  margin-bottom: 14px;
}

.workshop-desc p:last-child {
  margin-bottom: 0;
}

.workshop-meta {
  margin-bottom: 32px;
  padding: 22px 24px;
  background: var(--beige-mist);
  border-left: 3px solid var(--beige-warm);
  border-radius: 0 4px 4px 0;
}

.workshop-meta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.workshop-meta-header-icon {
  color: var(--beige-warm);
  flex-shrink: 0;
}

.workshop-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.workshop-meta-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.workshop-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.workshop-meta-icon {
  color: var(--beige-warm);
}

/* ─── TERMINE ─── */
.workshop-termine {
  margin-bottom: 36px;
  padding: 22px 24px;
  background: var(--sage-mist);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
}

.workshop-termine-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.workshop-termine-icon {
  color: var(--sage-deep);
  flex-shrink: 0;
}

.workshop-termine-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.workshop-termine-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop-termin-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.workshop-termin-item::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 1px;
}

.workshop-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}

.workshop-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.workshop-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(39, 25, 10, 0.2);
}

.workshop-btn:hover::before {
  transform: translateX(0);
}

.workshop-btn span {
  position: relative;
  z-index: 1;
}

.workshop-btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.workshop-btn:hover .workshop-btn-arrow {
  transform: translateX(5px);
}

/* ─── WP Block Button (matches workshop-btn) ─── */
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}

.wp-block-button__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.wp-block-button__link:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 16px 40px rgba(39, 25, 10, 0.2);
}

.wp-block-button__link:hover::before {
  transform: translateX(0);
}

.wp-block-button__link span {
  position: relative;
  z-index: 3;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 0 130px;
  background: var(--off-white);
}

.faq-intro {
  text-align: center;
  margin-bottom: 72px;
}

.faq-intro .section-title {
  margin-top: 8px;
  margin-bottom: 16px;
}

.faq-intro-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

.faq-list-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.faq-deco {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sage-mist);
  position: absolute;
  top: -60px;
  right: -40px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(39, 25, 10, 0.07);
  position: relative;
  z-index: 1;
}

.faq-item:first-child {
  border-top: 1px solid rgba(39, 25, 10, 0.07);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink);
  line-height: 1.4;
  text-align: left;
  transition: color 0.3s;
}

.faq-item.open .faq-question-text {
  color: var(--sage-deep);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s, transform 0.4s var(--ease);
  color: var(--ink-light);
}

.faq-item.open .faq-icon {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s var(--ease);
}

.faq-answer-inner {
  padding: 2px 0 28px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 640px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

/* ─── SUBPAGES RESPONSIVE ─── */
@media (max-width: 1100px) {
  .sister-inner {
    gap: 56px;
  }

  .workshop-inner {
    gap: 52px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 155px var(--gutter) 80px;
  }

  .sisters-intro {
    padding: 56px 0 0;
  }

  .sister-section {
    padding: 70px 0;
  }

  .sister-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tape-photo-frame img {
    height: 380px;
  }

  .workshop-item {
    padding: 70px 0;
  }

  .workshop-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-inner--reverse {
    direction: ltr;
  }

  .map-section {
    padding: 80px 0;
  }

  .map-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-section {
    padding: 60px 0 90px;
  }

  .faq-deco {
    font-size: 10rem;
    right: 0;
    top: -30px;
  }

  .workshop-termine {
    padding: 18px 20px;
  }

  .workshop-meta {
    padding: 18px 20px;
  }

  /* On mobile, always show all sister text */
  .sister-expandable {
    max-height: none !important;
  }

  .sister-read-more {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 130px var(--gutter) 60px;
  }

  .sister-section {
    padding: 52px 0;
  }

  .tape-photo-frame img {
    height: 300px;
  }

  .workshop-item {
    padding: 56px 0;
  }

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

  .faq-deco {
    display: none;
  }

  .workshop-number {
    font-size: 3.5rem;
  }

  .workshop-termine {
    padding: 16px 18px;
  }

  .workshop-meta {
    padding: 16px 18px;
  }
}

/* ════════════════════════════════════════════════
   ANFRAGE MODAL
   ════════════════════════════════════════════════ */

.anfrage-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 25, 10, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.anfrage-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.anfrage-modal {
  background: var(--cream);
  width: 100%;
  max-width: var(--container);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  transform: translateY(32px) scale(0.98);
  transition: transform 0.55s var(--ease-out);
  box-shadow: 0 40px 100px rgba(39, 25, 10, 0.35);
}

.anfrage-overlay.is-open .anfrage-modal {
  transform: translateY(0) scale(1);
}

.anfrage-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(39, 25, 10, 0.08);
  color: var(--ink);
  transition: background 0.25s, transform 0.35s var(--ease);
  cursor: pointer;
}

.anfrage-close:hover {
  background: rgba(39, 25, 10, 0.14);
  transform: rotate(90deg);
}

.anfrage-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 540px;
  overflow-y: auto;
  max-height: 90vh;
}

.anfrage-left {
  background: var(--sage-deep);
  padding: 72px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anfrage-left-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  pointer-events: none;
}

.anfrage-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 36px;
}

.anfrage-workshop-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.anfrage-workshop-name {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
}

.anfrage-intro-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-top: 32px;
  max-width: 300px;
}

.anfrage-brand {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 52px;
  display: block;
}

.anfrage-right {
  padding: 72px 60px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  overflow-y: auto;
}

.anfrage-form {
  width: 100%;
}

.anfrage-field {
  margin-bottom: 30px;
}

.anfrage-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 9px;
}

.anfrage-field input,
.anfrage-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--beige);
  padding: 8px 0 12px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}

.anfrage-field input::placeholder,
.anfrage-field textarea::placeholder {
  color: var(--ink-light);
  opacity: 0.65;
}

.anfrage-field input:focus,
.anfrage-field textarea:focus {
  border-bottom-color: var(--sage-deep);
}

.anfrage-select-wrap {
  position: relative;
}

.anfrage-select-wrap select {
  width: 100%;
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--beige);
  padding: 8px 28px 12px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.anfrage-select-wrap select:focus {
  border-bottom-color: var(--sage-deep);
}

.anfrage-select-wrap select option {
  font-style: normal;
  color: var(--ink);
}

.anfrage-select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-light);
  pointer-events: none;
  transition: transform 0.25s var(--ease);
}

.anfrage-select-wrap:focus-within .anfrage-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.anfrage-field textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.75;
}

.anfrage-form-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.anfrage-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}

.anfrage-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.anfrage-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(39, 25, 10, 0.2);
}

.anfrage-submit:hover::before {
  transform: translateX(0);
}

.anfrage-submit span {
  position: relative;
  z-index: 1;
}

.anfrage-submit-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.anfrage-submit:hover .anfrage-submit-arrow {
  transform: translateX(5px);
}

.anfrage-tdb-link {
  font-size: 0.76rem;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.anfrage-tdb-link:hover {
  color: var(--sage-deep);
}

@media (max-width: 900px) {
  .anfrage-inner {
    grid-template-columns: 1fr 1fr;
  }

  .anfrage-left {
    padding: 60px 40px;
  }

  .anfrage-right {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .anfrage-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .anfrage-modal {
    border-radius: 14px 14px 0 0;
    max-height: 95vh;
    transform: translateY(100%);
  }

  .anfrage-overlay.is-open .anfrage-modal {
    transform: translateY(0) scale(1);
  }

  .anfrage-inner {
    grid-template-columns: 1fr;
    min-height: unset;
    max-height: 95vh;
    overflow-y: auto;
  }

  .anfrage-left {
    padding: 60px 28px 44px;
    min-height: unset;
  }

  .anfrage-brand {
    display: none;
  }

  .anfrage-right {
    padding: 44px 28px 52px;
  }

  .anfrage-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .anfrage-left {
    padding: 52px 20px 40px;
  }

  .anfrage-right {
    padding: 36px 20px 48px;
  }

  .anfrage-form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .anfrage-submit {
    width: 100%;
    justify-content: center;
  }

  .anfrage-tdb-link {
    text-align: center;
  }
}

/* ════════════════════════════════════════════════
   PLAIN PAGES — Impressum, AGB, Datenschutz
   ════════════════════════════════════════════════ */

.plain-page {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

/* ─── Page Header (visual banner) ─── */
.plain-page-header {
  position: relative;
  padding: 160px var(--gutter) 80px;
  background: var(--cream);
  overflow: hidden;
  text-align: center;
}

.plain-page-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plain-page-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.plain-page-blob-1 {
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(172, 200, 162, 0.44), transparent 70%);
  top: -10%;
  right: -6%;
}

.plain-page-blob-2 {
  width: 32vw;
  height: 32vw;
  background: radial-gradient(circle, rgba(176, 212, 168, 0.28), transparent 70%);
  bottom: -5%;
  left: -5%;
}

.plain-page-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(122, 150, 116, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.plain-botanical {
  position: absolute;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  opacity: 0.75;
}

.plain-botanical-left {
  left: 3%;
}

.plain-botanical-right {
  right: 3%;
  transform: scaleX(-1);
}

.plain-page-header-inner {
  position: relative;
  z-index: 2;
}

.plain-page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 36px;
}

.plain-page-breadcrumb a {
  color: var(--ink-light);
  transition: color 0.2s;
}

.plain-page-breadcrumb a:hover {
  color: var(--sage-deep);
}

.plain-page-breadcrumb-sep {
  opacity: 0.4;
  font-size: 0.6rem;
}

.plain-page-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s var(--ease) forwards 0.15s;
}

.plain-page-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.75s var(--ease-out) forwards 0.3s;
}

.plain-page-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto 16px;
  max-width: 200px;
  opacity: 0;
  animation: fadeUp 0.55s var(--ease) forwards 0.5s;
}

.plain-page-header-divider span {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige-warm), transparent);
}

.plain-page-header-divider svg {
  opacity: 0.8;
  flex-shrink: 0;
}

.plain-page-meta {
  font-size: 0.78rem;
  color: var(--ink-light);
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) forwards 0.6s;
}

/* ─── Featured Image ─── */
.plain-page-featured-wrap {
  background: var(--off-white);
  padding: 64px var(--gutter) 0;
}

.plain-page-featured-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.plain-page-featured-photo {
  width: 100%;
}

.plain-page-featured-photo .tape-photo-frame {
  transform: rotate(-1deg);
}

.plain-page-featured-photo:hover .tape-photo-frame {
  transform: rotate(-1deg);
  box-shadow: 5px 12px 28px rgba(39, 25, 10, 0.18), 8px 42px 65px rgba(39, 25, 10, 0.12);
}

.plain-page-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .plain-page-featured-wrap {
    padding: 48px var(--gutter) 0;
  }

  .plain-page-featured-img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .plain-page-featured-wrap {
    padding: 36px var(--gutter) 0;
  }

  .plain-page-featured-img {
    height: 240px;
  }
}

/* ─── Content Body ─── */
.plain-page-body {
  background: var(--off-white);
  padding: 80px 0 110px;
  flex: 1;
}

.plain-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.plain-page-divider {
  width: 40px;
  height: 1.5px;
  background: var(--beige);
  margin: 48px 0;
}

.plain-content h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--ink);
  margin: 52px 0 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(39, 25, 10, 0.06);
}

.plain-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.plain-content h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 32px 0 10px;
}

.plain-content p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.plain-content a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.plain-content a:hover {
  color: var(--ink);
}

.plain-content ul {
  list-style: none;
  margin-bottom: 18px;
}

.plain-content ul li {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.plain-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
}

.plain-content address {
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .plain-page-header {
    padding: 130px var(--gutter) 64px;
  }

  .plain-botanical {
    width: 72px;
  }

  .plain-page-body {
    padding: 60px 0 80px;
  }
}

@media (max-width: 480px) {
  .plain-page-header {
    padding: 110px var(--gutter) 52px;
  }

  .plain-botanical {
    display: none;
  }

  .plain-page-body {
    padding: 48px 0 64px;
  }

  .plain-page-breadcrumb {
    margin-bottom: 24px;
  }
}

/* ════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════ */

.contact-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-info-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
  display: block;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info-text {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 44px;
}

.contact-details {
  margin-bottom: 44px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.contact-detail-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.contact-detail-value a:hover {
  color: var(--sage-deep);
}

.contact-form-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 56px 52px;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 36px;
}

.contact-field {
  margin-bottom: 28px;
}

.contact-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--beige);
  padding: 8px 0 12px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--sage-deep);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--ink-light);
  opacity: 0.6;
}

.contact-field textarea {
  resize: none;
  min-height: 110px;
  line-height: 1.75;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}

.contact-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage-deep);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(39, 25, 10, 0.18);
}

.contact-submit:hover::before {
  transform: translateX(0);
}

.contact-submit span {
  position: relative;
  z-index: 1;
}

.contact-submit-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.contact-submit:hover .contact-submit-arrow {
  transform: translateX(5px);
}

.contact-map-section {
  padding: 0 0 100px;
  background: var(--off-white);
}

.contact-map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 460px;
  background: var(--cream);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(0.95);
}

.contact-map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--off-white);
  padding: 14px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(39, 25, 10, 0.12);
}

.contact-map-label-icon {
  color: var(--sage-deep);
}

.contact-map-label-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.contact-map-label-sub {
  font-size: 0.7rem;
  color: var(--ink-light);
  font-weight: 400;
}

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-form-card {
    padding: 44px 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-map-wrap {
    height: 340px;
  }

  .contact-form-card {
    padding: 36px 28px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-map-wrap {
    height: 280px;
  }

  .contact-map-label {
    display: none;
  }
}

/* ════════════════════════════════════════════════
   FORM FEEDBACK MESSAGES
   ════════════════════════════════════════════════ */

.hw-form-message {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hw-form-message--success {
  background: var(--sage-mist);
  color: var(--sage-deep);
  border: 1px solid var(--sage-light);
}

.hw-form-message--error {
  background: #fef0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

/* ════════════════════════════════════════════════
   MOBILE WEBKIT FIXES
   Disable -webkit-appearance so forms and buttons
   render with the correct custom design on iOS/Android
   ════════════════════════════════════════════════ */

@media (max-width: 768px) {

  input,
  textarea,
  select,
  button {
    -webkit-appearance: none;
    appearance: none;
  }

  /* Restore border-radius reset only for buttons that have it */
  .anfrage-submit,
  .contact-submit,
  .workshop-btn,
  .cta-btn {
    border-radius: 2px;
  }

  /* Inputs: keep bottom-border-only style, no iOS inset shadow */
  .anfrage-field input,
  .anfrage-field textarea,
  .contact-field input,
  .contact-field textarea {
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
  }
}



/* --- CALENDAR --- */
.custom-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  max-width: 100%;
}

.cal-header {
  font-family: var(--font-heading);
  text-align: center;
  background: var(--sage-deep);
  color: white;
  border-radius: 3px;
}

.cal-day.empty {
  background: var(--blush);
  border: none;
}

.cal-day {
  min-height: 100px;
  padding: 5px;
  background: var(--cream);
  border-radius: 3px;
}

.cal-date-number {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  font-family: var(--font-heading);
  color: var(--ink)
}

.cal-event-item {
  background: var(--sage-light);
  border-left: 3px solid var(--sage-deep);
  padding: 3px;
  margin-bottom: 3px;
  font-size: 0.7rem
}

.cal-event-title {
  font-family: var(--font-heading);
  display: block;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.1rem;
  font-style: italic;
}

/* --- Mobile Fixes (Add this at the bottom) --- */
@media (max-width: 768px) {
  .cal-day:not(:has(.cal-event-item)) {
    display: none;
  }

  .custom-calendar {
    /* Switch from 7 columns to 1 single column */
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Hide the Mon-Sun headers and the empty boxes on mobile to save space */
  .cal-header,
  .cal-day.empty {
    display: none;
  }

  /* Adjust the day boxes for the list view */
  .cal-day {
    min-height: auto;
    /* Remove the rigid height */
    padding: 15px 10px;
  }

  /* Make the date numbers stand out more since the column headers are gone */
  .cal-date-number {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--sage-light);
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  /* Make event text slightly larger for touch screens */
  .cal-event-item {
    font-size: 0.9rem;
    padding: 8px;
  }
}


/* ─── COACHING PAGE ─── */

.coaching-center {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.coaching-card {
  background: var(--off-white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(105, 149, 106, 0.10), 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  align-self: start;
  border-top: 3px solid var(--sage);
}

.coaching-card-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 24px;
}

.coaching-card-price {
  font-family: var(--font-brand);
  font-size: 3.6rem;
  color: var(--sage-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.coaching-card-duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.coaching-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--sage-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.coaching-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.coaching-investition {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.coaching-investition .coaching-center {
  max-width: 560px;
}

.coaching-price-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.coaching-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--sage-light);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
}

.coaching-price-list li:last-child {
  border-bottom: none;
}

.coaching-price-list .price-amount {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--sage-deep);
}

.coaching-price-note {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .coaching-card {
    padding: 36px 24px;
  }
}

/* ─── ELTERN PAGE ─── */

.eltern-quote {
  border-left: 3px solid var(--sage);
  margin: 32px 0;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.coaching-card-price-pair {
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.coaching-card-price-pair .coaching-card-price {
  margin-bottom: 0;
}

.coaching-card-price-label {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

.eltern-topics {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  columns: 2;
  column-gap: 40px;
}

.eltern-topics li {
  break-inside: avoid;
  padding: 10px 0 10px 20px;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--sage-light);
}

.eltern-topics li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
}

.eltern-info-card {
  background: var(--off-white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(105, 149, 106, 0.10), 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 40px 36px;
  align-self: start;
  border-top: 3px solid var(--sage);
}

.eltern-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.eltern-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eltern-info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--sage-light);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-family: var(--font-heading);
}

.eltern-info-list li:last-child {
  border-bottom: none;
}

.eltern-info-list .info-icon {
  color: var(--sage-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .eltern-topics {
    columns: 1;
  }

  .eltern-info-card {
    padding: 32px 24px;
  }
}