/*
Theme Name: WithAnnie
Theme URI: https://withannie.local
Author: GitHub Copilot
Description: A calm and modern starter WordPress theme for the WithAnnie yoga brand.
Version: 1.0.0
Text Domain: withannie
*/

:root {
  --wa-sand: #e8f0e4;
  --wa-sand-soft: #eef4eb;
  --wa-olive: #5f7a52;
  --wa-forest: #274734;
  --wa-moss: #9fba95;
  --wa-clay: #8b7a56;
  --wa-cream: #eef4eb;
  --wa-white: #eef4eb;
  --wa-text: #2f3f33;
  --wa-muted: #5f6f61;
  --wa-line: rgba(39, 71, 52, 0.16);
  --wa-shadow: 0 20px 45px rgba(39, 71, 52, 0.14);
  --wa-radius: 28px;
  --wa-max-width: 1140px;
  --wa-bg-main: #eef4eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", "Segoe UI", sans-serif;
  color: var(--wa-text);
  background: var(--wa-bg-main);
  line-height: 1.7;
}

html.has-entry-loader,
html.has-entry-loader body {
  overflow: hidden;
}

.site-entry-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(130% 70% at 50% 14%, rgba(233, 242, 227, 0.94), rgba(238, 244, 235, 0.98) 55%, rgba(238, 244, 235, 1) 100%),
    var(--wa-bg-main);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-entry-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-entry-loader__content {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  color: var(--wa-forest);
}

.site-entry-loader__logo {
  width: clamp(76px, 12vw, 118px);
  height: auto;
  opacity: 0;
  transform: scale(0.94);
  animation: withannie-loader-logo-fade 0.95s ease forwards;
}

@keyframes withannie-loader-logo-fade {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--wa-max-width));
  margin: 0 auto;
}

.header-inner {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.site-header-logo-link {
  display: none;
}

.nav-disclosure {
  position: fixed;
  top: 1.2rem;
  right: 1.35rem;
  z-index: 40;
}

.nav-disclosure__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-disclosure__summary::-webkit-details-marker {
  display: none;
}

.site-logo {
  width: clamp(34px, 4.8vw, 46px);
  height: auto;
}

.menu-toggle__bars {
  display: inline-grid;
  gap: 0.22rem;
}

.menu-toggle__bars span {
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-disclosure[open] .menu-toggle__bars span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-disclosure[open] .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-disclosure[open] .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  justify-content: center;
}

.site-nav--expandable {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  min-width: 240px;
  padding: 0.7rem;
  border-radius: 16px;
  border: 1px solid var(--wa-line);
  background: rgba(251, 253, 249, 0.98);
  box-shadow: var(--wa-shadow);
  z-index: 30;
}

.site-nav a {
  font-family: "Raleway", "Segoe UI", sans-serif;
  color: var(--wa-muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--wa-forest);
}

.site-nav .menu {
  display: grid;
  gap: 0.35rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .menu-item {
  margin: 0;
  list-style: none;
}

.site-nav__list > .menu-item > a {
  display: inline-flex;
  width: 100%;
  padding: 0.4rem 0.56rem;
  font-size: 0.88rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__list > .menu-item > a:hover,
.site-nav__list > .menu-item > a:focus {
  background: rgba(54, 68, 54, 0.08);
}

.site-nav__list > .current-menu-item > a,
.site-nav__list > .current_page_item > a {
  background: rgba(54, 68, 54, 0.12);
  color: var(--wa-forest);
}

.language-switcher {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.5rem;
}

.language-switcher__link {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--wa-line);
  color: var(--wa-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switcher__link.is-active {
  border-color: transparent;
  background: var(--wa-forest);
  color: #fff;
}

.button,
.wp-block-button__link,
input[type="submit"] {
  font-family: "Raleway", "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: #826b4f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #826b4f;
  color: #fff;
  border: none;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #6f593f;
  transform: translateY(-2px);
  box-shadow: var(--wa-shadow);
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero--editorial {
  background:
    radial-gradient(circle at top right, rgba(95, 122, 82, 0.2), transparent 30%),
    linear-gradient(180deg, var(--wa-sand-soft), var(--wa-cream));
}

.hero--fullscreen-banner {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 81%;
  background-repeat: no-repeat;
}

.hero--video-banner {
  background: #0f1f17;
  --hero-scroll-scale: 1;
  --hero-fade-opacity: 1;
  transform: scale(var(--hero-scroll-scale));
  transform-origin: center top;
  will-change: transform;
  transition: transform 0.12s linear;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.hero--video-banner::before,
.hero--video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--video-banner::before {
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.42) 78%),
    repeating-linear-gradient(
      to bottom,
      rgba(238, 255, 241, 0.05) 0px,
      rgba(238, 255, 241, 0.05) 1px,
      rgba(0, 0, 0, 0.12) 2px,
      rgba(0, 0, 0, 0.12) 3px
    );
  mix-blend-mode: soft-light;
  opacity: 0.72;
}

.hero--video-banner::after {
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 189, 156, 0.16), transparent 42%),
    radial-gradient(circle at 84% 76%, rgba(120, 255, 203, 0.12), transparent 38%),
    repeating-linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(0, 0, 0, 0.04) 3px,
      rgba(0, 0, 0, 0.04) 5px
    );
  opacity: 0.36;
  animation: hero-tape-noise 1.8s steps(2, end) infinite;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
  filter: saturate(0.72) contrast(1.08) brightness(0.86) sepia(0.2) hue-rotate(-18deg) blur(0.25px);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--wa-max-width));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 32vw, 460px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.26));
  opacity: var(--hero-fade-opacity);
}

.hero-center-logo img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  animation: hero-logo-in 1.15s cubic-bezier(0.2, 0.75, 0.2, 1) 0.12s forwards;
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-scroll-hint {
  position: absolute;
  left: -0.45rem;
  bottom: 2.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f7fbf4;
  text-shadow: 0 8px 22px rgba(9, 20, 13, 0.65);
  opacity: var(--hero-fade-opacity);
}

.hero-scroll-hint__text {
  font-family: "Caveat", cursive;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-scroll-hint__arrow {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1;
  animation: hero-scroll-bounce 1.6s ease-in-out infinite;
}

.hero-intro-left {
  max-width: 38rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(9, 20, 13, 0.34);
  border: 1px solid rgba(247, 251, 244, 0.16);
  backdrop-filter: blur(2px);
}

.hero-intro-left h1 {
  margin: 0 0 0.9rem;
  color: #f7fbf4;
  text-shadow: 0 12px 30px rgba(9, 20, 13, 0.72);
}

.hero-intro-left p {
  margin: 0;
  color: #f7fbf4;
  text-shadow: 0 10px 24px rgba(9, 20, 13, 0.68);
}

.hero-intro-left .hero-actions {
  justify-content: flex-start;
}

.hero-word-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  text-align: center;
  opacity: var(--hero-fade-opacity);
}

.hero-word {
  display: inline-block;
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #f7fbf4;
  text-shadow: 0 10px 26px rgba(9, 20, 13, 0.6);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-word-in 1.9s ease forwards;
}

.hero-word + .hero-word {
  margin-left: 0.34em;
}

.hero-word-dot {
  display: inline-block;
  animation: hero-word-in 1.9s ease forwards, hero-dot-blink 1.05s steps(1, end) infinite;
  animation-delay: 3.8s, 5.8s;
}

@keyframes hero-tape-noise {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-0.25%, 0.25%, 0);
  }
  50% {
    transform: translate3d(0.22%, -0.18%, 0);
  }
  75% {
    transform: translate3d(-0.18%, 0.18%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero-word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-word:nth-child(2) {
  animation-delay: 2s;
}

.hero-word:nth-child(3) {
  animation-delay: 3.8s;
}

@media (min-width: 1000px) {
  .hero-word-stack {
    white-space: nowrap;
  }
}

.hero-word-stack .hero-actions {
  justify-content: flex-end;
  margin-top: 1.4rem;
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-dot-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.86;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.hero-banner-content {
  position: relative;
  z-index: 1;
}

.hero-banner-card {
  width: min(100%, 700px);
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(19, 39, 26, 0.34);
  border: 1px solid rgba(247, 251, 244, 0.2);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 30px rgba(19, 39, 26, 0.2);
}

.hero-banner-card h1 {
  max-width: 12ch;
}

.hero--fullscreen-banner .eyebrow,
.hero--fullscreen-banner h1,
.hero--fullscreen-banner p {
  color: #f7fbf4;
}

.hero--fullscreen-banner h1,
.hero--fullscreen-banner p {
  text-shadow: 0 7px 22px rgba(19, 39, 26, 0.52);
}

.hero--fullscreen-banner p {
  max-width: 34rem;
}

.hero--fullscreen-banner .button {
  background: #826b4f;
  box-shadow: 0 14px 28px rgba(55, 42, 31, 0.3);
}

.hero--fullscreen-banner .button.secondary {
  background: #826b4f;
  color: #fff;
  border-color: transparent;
}

.hero--fullscreen-banner .button.secondary:hover,
.hero--fullscreen-banner .button.secondary:focus {
  background: #6f593f;
}

.hero-grid,
.feature-grid,
.two-column,
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-grid--editorial {
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--wa-olive);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.section-eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 1.35rem;
  text-align: left;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--wa-forest);
}

.home .section .section-eyebrow,
.home .section .section-title {
  text-align: center;
}

.hero h1,
.section-title {
  margin: 0 0 1rem;
  color: var(--wa-forest);
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  max-width: 12ch;
}

.hero p,
.section-copy p,
.feature-copy p,
.agenda-copy p,
.community-card p,
.contact-panel p,
.info-card p,
.pricing-card p {
  font-size: 1.04rem;
  color: var(--wa-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-card,
.info-card,
.pricing-card,
.quote-card,
.community-card,
.contact-panel,
.agenda-item {
  background: var(--wa-white);
  border-radius: var(--wa-radius);
  box-shadow: var(--wa-shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card img,
.feature-media img,
.page-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--image-stack img {
  min-height: 560px;
  border-radius: var(--wa-radius);
}

.floating-note {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 8px 24px rgba(54, 68, 54, 0.12);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--wa-sand-soft);
}

.section-copy {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-copy--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.pricing-card,
.community-card,
.contact-panel,
.quote-card {
  padding: 2rem;
}

.pillar-card {
  text-align: center;
  padding: 0.75rem 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.pillar-card h3 {
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.pillar-card p {
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
}

.has-motion-effects .pillar-card {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
}

.has-motion-effects .pillar-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.has-motion-effects .pillar-card.is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

.has-motion-effects .pillar-card.is-visible:nth-child(3) {
  transition-delay: 0.24s;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: var(--wa-sand);
  color: var(--wa-forest);
  font-size: 1.8rem;
  box-shadow: 0 18px 35px rgba(47, 79, 61, 0.12);
  transition: transform 0.55s ease, box-shadow 0.55s ease, background-color 0.35s ease;
}

.pillar-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  transition: transform 0.55s ease;
}

.has-motion-effects .pillar-card.is-visible .pillar-icon {
  animation: pillar-float 3.8s ease-in-out infinite;
}

.has-motion-effects .pillar-card.is-visible:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: none;
}

.has-motion-effects .pillar-card.is-visible:hover .pillar-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 24px 42px rgba(47, 79, 61, 0.18);
}

.has-motion-effects .pillar-card.is-visible:hover .pillar-icon img {
  transform: scale(1.08);
}

.yoga-activities-grid {
  align-items: stretch;
}

.yoga-activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.yoga-activity-card p {
  max-width: 30ch;
  margin: 0 auto 1.35rem;
}

.yoga-activity-card__button {
  margin-top: auto;
  min-width: 210px;
}

@keyframes pillar-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.info-card h3,
.pricing-card h3,
.agenda-copy h3 {
  margin-top: 0;
  color: var(--wa-forest);
}

.feature-grid,
.story-grid {
  align-items: stretch;
}

.feature-media {
  overflow: hidden;
  border-radius: var(--wa-radius);
  box-shadow: var(--wa-shadow);
}

.feature-media img {
  min-height: 520px;
}


.section--rooster .feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr) minmax(0, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.section--rooster .feature-media--rooster-map,
.section--rooster .feature-media--rooster-meevaart {
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.section--rooster .feature-media--rooster-map img,
.section--rooster .feature-media--rooster-meevaart img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  min-height: 0;
}

.section--rooster .feature-media--rooster-map img {
  max-width: 100%;
}

.section--rooster .feature-media--rooster-meevaart img {
  max-width: 100%;
}

.section--rooster .feature-copy {
  max-width: 34rem;
}

.section--rooster .feature-list {
  margin: 1.1rem 0 1.6rem;
}

.rooster-preview-list {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.rooster-preview-list .agenda-item.is-collapsed {
  display: none;
}

.rooster-preview-list--embed {
  border: 1px solid var(--wa-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--wa-white);
}

.rooster-preview-list--embed iframe {
  display: block;
  width: 100%;
  min-height: 1180px;
  border: 0;
}

.rooster-preview-wide {
  margin-top: 1.5rem;
}

.rooster-preview-wide .button {
  margin-top: 0.35rem;
}

.rooster-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.section--grief-yoga .feature-copy .section-eyebrow {
  width: 100%;
  margin-bottom: 1.35rem;
  text-align: left;
}

.section--grief-yoga .feature-copy {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  max-width: 34rem;
  margin: 0;
}

.section--grief-yoga .feature-copy .section-eyebrow,
.section--grief-yoga .feature-copy .section-title,
.section--grief-yoga .feature-copy .button {
  align-self: center;
  text-align: center;
}

.section--grief-yoga .feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.section--grief-yoga .feature-media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--wa-shadow);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  min-height: 320px;
}

.section--grief-yoga .feature-media img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.section--grief-yoga .feature-copy p,
.section--grief-yoga .feature-list li,
.section--rooster .feature-copy p,
.section--rooster .feature-list li {
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
}

.section--about-editorial {
  background: var(--wa-bg-main);
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.34fr) minmax(0, 0.78fr);
  gap: 1.4rem;
  align-items: center;
}

.about-editorial-grid .section-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.about-editorial-copy {
  position: relative;
  z-index: 1;
}

.about-editorial-copy--intro {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding-top: 1rem;
}

.about-editorial-copy--intro p,
.about-editorial-copy--reflection p {
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--wa-text);
}

.about-editorial-copy--reflection {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  max-width: 24rem;
  margin-top: 3.25rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-editorial-image {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--wa-shadow);
}

.about-editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center center;
}

.script-accent {
  display: inline-block;
  margin: 0 0.15rem;
  font-family: "Caveat", cursive;
  font-size: 1.45em;
  font-weight: 700;
  line-height: 0.9;
  color: var(--wa-forest);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-list,
.pricing-list,
.feature-list,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list {
  margin-top: 1rem;
}

.schedule-list li,
.pricing-list li,
.agenda-item {
  border-bottom: 1px solid var(--wa-line);
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

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

.feature-list {
  margin: 1.4rem 0 1.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--wa-muted);
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wa-clay);
  font-weight: 700;
}

.quote-card {
  background: var(--wa-forest);
  color: #fff;
}

.quote-card--light {
  align-self: center;
  background: linear-gradient(180deg, #fbfdf9, #e3eddc);
  color: var(--wa-forest);
}

.quote-card p {
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.7), rgba(251, 247, 241, 1));
}

.inner-page-hero {
  padding-bottom: 3.4rem;
}

.inner-page-hero__media {
  overflow: hidden;
}

.inner-page-hero__media img {
  min-height: 430px;
}

.page-hero__card img {
  aspect-ratio: 5 / 4;
}

.contact-panel--soft {
  background: linear-gradient(180deg, #fbfdf9, #e3eddc);
}

.agenda-list {
  display: grid;
  gap: 1rem;
}

.retreat-flow {
  display: grid;
  gap: 1.6rem;
}

.retreat-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.retreat-timeline__item {
  border: 1px solid var(--wa-line);
  border-radius: 22px;
  padding: 1.25rem;
  background: var(--wa-white);
}

.retreat-timeline__item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: var(--wa-forest);
}

.retreat-timeline__item p {
  margin: 0;
  color: var(--wa-muted);
}

.agenda-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--wa-line);
}

.agenda-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: var(--wa-sand);
  color: var(--wa-forest);
}

.agenda-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.agenda-month {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.agenda-meta {
  color: var(--wa-muted);
  font-weight: 600;
}

.community-card--instagram {
  background: linear-gradient(180deg, #fbfdf9, #dfe9d8);
}

.community-card--newsletter {
  background: linear-gradient(180deg, #edf4e9, #d5e3ce);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq-item p,
.retreat-card p,
.contact-panel li {
  color: var(--wa-muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--wa-line);
  background: #e3eddc;
}

.footer-inner {
  color: var(--wa-muted);
}

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

.footer-inner--columns h3 {
  margin: 0 0 0.9rem;
  color: var(--wa-forest);
  font-size: 1rem;
}

.footer-inner--columns a,
.footer-inner--columns p {
  display: block;
  margin: 0 0 0.75rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wa-muted);
}

.footer-contact-link__icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.8;
}

.footer-inner--bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wa-line);
}

main .entry-content,
main .page-content {
  width: min(calc(100% - 2rem), 800px);
  margin: 3rem auto;
}

.content-stack {
  display: grid;
  gap: 1.25rem;
}

.content-shell {
  background: var(--wa-white);
  border: 1px solid var(--wa-line);
  border-radius: var(--wa-radius);
  box-shadow: var(--wa-shadow);
  padding: 2rem;
}

.content-shell__title {
  margin: 0 0 0.8rem;
  color: var(--wa-forest);
}

.content-shell p,
.content-shell li,
.content-shell blockquote,
.content-shell .wp-block-paragraph {
  color: var(--wa-muted);
}

.content-shell a {
  color: var(--wa-forest);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.content-shell .button {
  text-decoration: none;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(54, 68, 54, 0.15);
  font: inherit;
  margin-bottom: 1rem;
  background: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .header-inner,
  .hero-grid,
  .feature-grid,
  .two-column,
  .community-grid,
  .card-grid,
  .faq-list,
  .card-grid--two,
  .footer-inner--columns,
  .agenda-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .hero--fullscreen-banner {
    padding-top: 0;
  }

  .hero-banner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-scroll-hint {
    left: -0.35rem;
    bottom: 2.55rem;
  }

  .hero-center-logo {
    width: clamp(180px, 54vw, 320px);
    top: 50%;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-editorial-image,
  .about-editorial-copy--reflection {
    grid-column: auto;
    grid-row: auto;
  }

  .about-editorial-image img {
    min-height: 420px;
  }

  .about-editorial-copy--reflection {
    max-width: none;
    justify-self: stretch;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-card--image-stack img,
  .feature-media img {
    min-height: 320px;
  }

  .section--rooster .feature-media--rooster-map img,
  .section--rooster .feature-media--rooster-meevaart img {
    min-height: 0;
  }

  .section--rooster .feature-media--rooster-meevaart {
    display: none;
  }

  .section--grief-yoga .feature-copy .section-eyebrow {
    transform: none;
  }

  .section--grief-yoga .feature-copy {
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }

  .section--grief-yoga .feature-media {
    max-width: 420px;
    margin: 0 auto;
    min-height: 300px;
  }

  .section--grief-yoga .feature-media img {
    min-height: 300px;
  }

  .agenda-item {
    gap: 1rem;
  }

  .agenda-date {
    width: 76px;
    height: 76px;
  }

  .retreat-timeline {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  .section {
    padding: 3.5rem 0;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 1.2rem), var(--wa-max-width));
  }

  .nav-disclosure {
    top: 0.95rem;
    right: 0.95rem;
  }

  .site-nav--expandable {
    right: 0;
    left: auto;
    min-width: min(92vw, 320px);
    max-width: min(92vw, 320px);
    padding: 0.6rem;
  }

  .hero-center-logo {
    top: 50%;
    width: clamp(160px, 56vw, 260px);
  }

  .feature-copy p,
  .section-copy p,
  .agenda-copy p {
    font-size: 0.98rem;
  }

  .agenda-item {
    gap: 0.75rem;
    padding: 1rem 0.95rem;
    align-items: start;
  }

  .agenda-date {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .agenda-day {
    font-size: 1.65rem;
  }

  .agenda-copy h3 {
    font-size: 1.05rem;
  }

  .agenda-meta {
    justify-self: start;
  }

  .rooster-preview-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rooster-preview-actions .button {
    width: 100%;
  }

  .yoga-activity-card__button {
    width: 100%;
    min-width: 0;
  }

  .footer-inner--columns {
    gap: 1.35rem;
  }

  .footer-inner--bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

/* Mobile-first compliance overrides */
body {
  font-size: 16px;
}

.nav-disclosure__summary {
  width: 44px;
  height: 44px;
}

.site-nav__list > .menu-item > a,
.language-switcher__link,
.button,
.wp-block-button__link,
input[type="submit"],
.hero-scroll-hint {
  min-height: 44px;
}

.site-nav__list > .menu-item > a,
.language-switcher__link {
  font-size: 1rem;
  line-height: 1.35;
}

.site-nav .menu {
  gap: 0.5rem;
}

.hero-grid,
.feature-grid,
.two-column,
.community-grid,
.card-grid,
.card-grid--two,
.faq-list,
.footer-inner--columns,
.retreat-timeline,
.section--rooster .feature-grid,
.section--grief-yoga .feature-grid,
.about-editorial-grid {
  grid-template-columns: 1fr;
}

.agenda-item {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 0.95rem;
}

.agenda-date {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

.agenda-day {
  font-size: 1.65rem;
}

.feature-copy p,
.section-copy p,
.agenda-copy p,
.community-card p,
.contact-panel p,
.info-card p,
.pricing-card p,
.about-editorial-copy--intro p,
.about-editorial-copy--reflection p {
  font-size: 1rem;
}

input,
textarea,
select {
  min-height: 44px;
  font-size: 1rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.button:focus-visible,
.wp-block-button__link:focus-visible,
.site-nav__list > .menu-item > a:focus-visible,
.language-switcher__link:focus-visible {
  outline: 3px solid #2f6f4f;
  outline-offset: 3px;
}

@media (min-width: 701px) {
  .section {
    padding: 5rem 0;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 2rem), var(--wa-max-width));
  }

  .agenda-item {
    grid-template-columns: 92px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.3rem 1.4rem;
  }

  .agenda-date {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .agenda-day {
    font-size: 2rem;
  }
}

@media (min-width: 901px) {
  .hero-grid,
  .feature-grid,
  .two-column,
  .community-grid,
  .card-grid,
  .faq-list,
  .card-grid--two,
  .footer-inner--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .feature-grid,
  .two-column,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid--editorial {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retreat-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section--rooster .feature-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr) minmax(0, 0.8fr);
  }

  .section--grief-yoga .feature-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    align-items: stretch;
  }

  .section--grief-yoga .feature-media {
    max-width: none;
    margin: 0;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }

  .section--grief-yoga .feature-media img {
    height: 100%;
    min-height: 0;
  }

  .about-editorial-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.34fr) minmax(0, 0.78fr);
  }

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

/* Subtle botanical silhouettes from section 2 to page bottom */
.home-main--botanical {
  position: relative;
}

.home-main--botanical .botanical-layer {
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.page-main--botanical .botanical-layer {
  top: 0;
}

.page-main--botanical .section,
.page-main--botanical .page-hero,
.page-main--botanical .section-inner {
  position: relative;
  z-index: 1;
}

.page-main--botanical .section-copy--centered .section-eyebrow,
.page-main--botanical .section-copy--centered .section-title,
.yoga-detail-page__cta {
  text-align: center;
}

.yoga-detail-page__intro {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.yoga-detail-page__intro p,
.yoga-detail-page__body p,
.yoga-detail-page__body li {
  font-family: "Comfortaa", "Raleway", "Segoe UI", sans-serif;
}

.yoga-detail-page__cta .button {
  margin-top: 0.8rem;
}

.yoga-detail-hero {
  padding-top: 5.25rem;
  padding-bottom: 3rem;
  background: transparent;
}

.yoga-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 1.5rem;
  align-items: stretch;
}

.yoga-detail-hero__copy {
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yoga-detail-hero__copy .section-title,
.yoga-detail-hero__copy .section-eyebrow,
.yoga-detail-hero__copy p {
  text-align: left;
}

.yoga-detail-hero__copy p {
  max-width: 34ch;
  margin: 0;
}

.yoga-detail-hero__media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--wa-shadow);
  background: linear-gradient(180deg, #f2f7ef, #dfe9d9);
}

.yoga-detail-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
}

.yoga-detail-hero__grid--rouw {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.78fr);
  align-items: stretch;
}

.yoga-detail-hero__grid--rouw .yoga-detail-hero__media {
  aspect-ratio: auto;
  height: 100%;
}

.yoga-detail-hero__grid--rouw .yoga-detail-hero__media img {
  min-height: 0;
  object-position: center;
}

.yoga-detail-hero__grid--rouw .yoga-detail-hero__copy {
  max-width: 42ch;
}

.yoga-detail-hero__grid--rouw .yoga-detail-hero__copy p {
  max-width: 42ch;
}

.yoga-detail-panel {
  border-radius: 24px;
}

.yoga-detail-price-card h3 {
  margin-bottom: 0.4rem;
}

.yoga-detail-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.yoga-detail-quote p {
  margin: 0;
  max-width: 24ch;
}

.yoga-detail-quote__text {
  font-family: "Caveat", cursive;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-style: italic;
  color: var(--wa-forest);
  text-align: center;
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .yoga-detail-hero {
    padding-top: 3.8rem;
  }

  .yoga-detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .yoga-detail-hero__copy .section-title,
  .yoga-detail-hero__copy .section-eyebrow,
  .yoga-detail-hero__copy p {
    text-align: center;
  }

  .yoga-detail-hero__copy p {
    max-width: none;
  }

  .yoga-detail-hero__media img {
    min-height: 260px;
  }

  .yoga-detail-hero__grid--rouw .yoga-detail-hero__media {
    aspect-ratio: auto;
  }
}

.home-main--botanical .botanical-layer__item {
  position: absolute;
  opacity: 0.07;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: sepia(35%) saturate(58%) hue-rotate(32deg) brightness(70%);
}

.home-main--botanical .botanical-layer__item--mid-1 {
  left: 44%;
  top: 11%;
  width: clamp(120px, 14vw, 220px);
  height: clamp(160px, 20vw, 280px);
  background-image: url("assets/images/botanical/21.png");
  transform: translateX(-50%) rotate(-10deg);
}

.home-main--botanical .botanical-layer__item--mid-2 {
  left: 57%;
  top: 41%;
  width: clamp(130px, 15vw, 240px);
  height: clamp(170px, 22vw, 300px);
  background-image: url("assets/images/botanical/30.png");
  transform: translateX(-50%) rotate(13deg) scaleX(-1);
}

.home-main--botanical .botanical-layer__item--mid-3 {
  left: 49%;
  top: 72%;
  width: clamp(140px, 16vw, 250px);
  height: clamp(180px, 22vw, 320px);
  background-image: url("assets/images/botanical/42.png");
  transform: translateX(-50%) rotate(-15deg);
}

.home-main--botanical .botanical-layer__item--mid-4 {
  left: 35%;
  top: 27%;
  width: clamp(105px, 12vw, 190px);
  height: clamp(145px, 18vw, 250px);
  background-image: url("assets/images/botanical/9.png");
  opacity: 0.065;
  transform: translateX(-50%) rotate(18deg);
}

.home-main--botanical .botanical-layer__item--mid-5 {
  left: 66%;
  top: 58%;
  width: clamp(100px, 12vw, 180px);
  height: clamp(140px, 17vw, 240px);
  background-image: url("assets/images/botanical/37.png");
  opacity: 0.062;
  transform: translateX(-50%) rotate(-17deg) scaleX(-1);
}

.home-main--botanical .botanical-layer__item--mid-6 {
  left: 28%;
  top: 16%;
  width: clamp(70px, 8vw, 130px);
  height: clamp(95px, 12vw, 170px);
  background-image: url("assets/images/botanical/2.png");
  opacity: 0.055;
  transform: translateX(-50%) rotate(88deg);
}

.home-main--botanical .botanical-layer__item--mid-7 {
  left: 62%;
  top: 24%;
  width: clamp(68px, 8vw, 125px);
  height: clamp(90px, 11vw, 160px);
  background-image: url("assets/images/botanical/16.png");
  opacity: 0.052;
  transform: translateX(-50%) rotate(0deg);
}

.home-main--botanical .botanical-layer__item--mid-8 {
  left: 39%;
  top: 49%;
  width: clamp(72px, 8vw, 132px);
  height: clamp(94px, 11vw, 162px);
  background-image: url("assets/images/botanical/25.png");
  opacity: 0.054;
  transform: translateX(-50%) rotate(-92deg) scaleX(-1);
}

.home-main--botanical .botanical-layer__item--mid-9 {
  left: 71%;
  top: 67%;
  width: clamp(74px, 8vw, 136px);
  height: clamp(96px, 12vw, 170px);
  background-image: url("assets/images/botanical/41.png");
  opacity: 0.05;
  transform: translateX(-50%) rotate(36deg);
}

.home-main--botanical .botanical-layer__item--mid-10 {
  left: 32%;
  top: 82%;
  width: clamp(70px, 8vw, 128px);
  height: clamp(92px, 11vw, 162px);
  background-image: url("assets/images/botanical/44.png");
  opacity: 0.052;
  transform: translateX(-50%) rotate(-32deg);
}

.home-main--botanical .botanical-layer__item--mid-11,
.home-main--botanical .botanical-layer__item--mid-12,
.home-main--botanical .botanical-layer__item--mid-13,
.home-main--botanical .botanical-layer__item--mid-14,
.home-main--botanical .botanical-layer__item--mid-15,
.home-main--botanical .botanical-layer__item--mid-16,
.home-main--botanical .botanical-layer__item--mid-17,
.home-main--botanical .botanical-layer__item--mid-18,
.home-main--botanical .botanical-layer__item--mid-19,
.home-main--botanical .botanical-layer__item--mid-20,
.home-main--botanical .botanical-layer__item--mid-21,
.home-main--botanical .botanical-layer__item--mid-22,
.home-main--botanical .botanical-layer__item--mid-23,
.home-main--botanical .botanical-layer__item--mid-24 {
  display: none;
}

.home #over-mij,
.home #yogalessen,
.home .section--grief-yoga,
.home #rooster,
.home .site-footer {
  position: relative;
  overflow: hidden;
}

.home #over-mij > .section-inner,
.home #yogalessen > .section-inner,
.home .section--grief-yoga > .section-inner,
.home #rooster > .section-inner,
.home .site-footer .footer-inner {
  position: relative;
  z-index: 1;
}

.home #over-mij::before,
.home #yogalessen::before,
.home .section--grief-yoga::before,
.home #rooster::before,
.home .site-footer::before,
.home #over-mij::after,
.home .section--grief-yoga::after,
.home #rooster::after,
.home .site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.11;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: sepia(35%) saturate(58%) hue-rotate(32deg) brightness(70%);
}

.home #over-mij::before {
  left: 47%;
  bottom: -2.35rem;
  width: clamp(140px, 18vw, 260px);
  height: clamp(180px, 24vw, 330px);
  background-image: url("assets/images/botanical/11.png");
  transform: translateX(-50%) rotate(-8deg);
}

.home #over-mij::after {
  right: 15%;
  top: -1.2rem;
  width: clamp(120px, 16vw, 220px);
  height: clamp(160px, 20vw, 260px);
  background-image: url("assets/images/botanical/22.png");
  opacity: 0.08;
  transform: rotate(12deg) scaleX(-1);
}

.home #yogalessen::before {
  right: 10%;
  bottom: -2.25rem;
  width: clamp(140px, 16vw, 240px);
  height: clamp(180px, 22vw, 300px);
  background-image: url("assets/images/botanical/33.png");
  transform: rotate(-10deg);
}

.home .section--grief-yoga::before {
  left: -2.6rem;
  top: -0.35rem;
  width: clamp(130px, 17vw, 250px);
  height: clamp(180px, 23vw, 310px);
  background-image: url("assets/images/botanical/47.png");
  opacity: 0.09;
  transform: rotate(-5deg);
}

.home .section--grief-yoga::after {
  right: -3.35rem;
  bottom: 0.65rem;
  width: clamp(110px, 14vw, 200px);
  height: clamp(140px, 18vw, 250px);
  background-image: url("assets/images/botanical/28.png");
  opacity: 0.07;
  transform: rotate(14deg) scaleX(-1);
}

.home #rooster::before {
  left: 7%;
  bottom: -2.75rem;
  width: clamp(160px, 20vw, 300px);
  height: clamp(190px, 24vw, 340px);
  background-image: url("assets/images/botanical/46.png");
  transform: rotate(-8deg);
}

.home #rooster::after {
  left: auto;
  right: 9%;
  top: 0.45rem;
  width: clamp(115px, 14vw, 200px);
  height: clamp(145px, 18vw, 240px);
  background-image: url("assets/images/botanical/4.png");
  opacity: 0.075;
  transform: rotate(-15deg);
}

.home .site-footer::before {
  left: -2.5rem;
  bottom: -2.6rem;
  width: clamp(180px, 22vw, 320px);
  height: clamp(200px, 27vw, 380px);
  background-image: url("assets/images/botanical/6.png");
  opacity: 0.1;
  transform: rotate(-7deg);
}

.home .site-footer::after {
  right: -1.8rem;
  top: 0.35rem;
  width: clamp(110px, 14vw, 200px);
  height: clamp(130px, 18vw, 230px);
  background-image: url("assets/images/botanical/18.png");
  opacity: 0.07;
  transform: rotate(11deg);
}

@media (max-width: 900px) {
  .home #over-mij::after,
  .home .section--grief-yoga::after,
  .home #rooster::after,
  .home .site-footer::after {
    display: none;
  }

  .home-main--botanical .botanical-layer__item--mid-1 {
    left: 48%;
    top: 13%;
    width: clamp(88px, 22vw, 150px);
    height: clamp(120px, 30vw, 210px);
    opacity: 0.09;
  }

  .home-main--botanical .botanical-layer__item--mid-2 {
    left: 66%;
    top: 29%;
    width: clamp(80px, 19vw, 140px);
    height: clamp(110px, 27vw, 190px);
    opacity: 0.08;
  }

  .home-main--botanical .botanical-layer__item--mid-3 {
    left: 34%;
    top: 51%;
    width: clamp(82px, 20vw, 145px);
    height: clamp(112px, 28vw, 195px);
    opacity: 0.082;
  }

  .home-main--botanical .botanical-layer__item--mid-4 {
    left: 72%;
    top: 66%;
    width: clamp(72px, 18vw, 130px);
    height: clamp(98px, 24vw, 170px);
    opacity: 0.076;
  }

  .home-main--botanical .botanical-layer__item--mid-5 {
    left: 29%;
    top: 78%;
    width: clamp(70px, 17vw, 126px);
    height: clamp(95px, 23vw, 165px);
    opacity: 0.074;
  }

  .home-main--botanical .botanical-layer__item--mid-6 {
    left: 54%;
    top: 87%;
    width: clamp(68px, 16vw, 122px);
    height: clamp(92px, 22vw, 160px);
    opacity: 0.072;
  }

  .home-main--botanical .botanical-layer__item--mid-7 {
    left: 41%;
    top: 35%;
    width: clamp(68px, 16vw, 120px);
    height: clamp(90px, 21vw, 155px);
    opacity: 0.07;
  }

  .home-main--botanical .botanical-layer__item--mid-8 {
    left: 62%;
    top: 44%;
    width: clamp(66px, 15vw, 116px);
    height: clamp(86px, 20vw, 148px);
    opacity: 0.068;
  }

  .home-main--botanical .botanical-layer__item--mid-9 {
    left: 25%;
    top: 59%;
    width: clamp(64px, 15vw, 112px);
    height: clamp(84px, 19vw, 144px);
    opacity: 0.066;
  }

  .home-main--botanical .botanical-layer__item--mid-10 {
    left: 70%;
    top: 74%;
    width: clamp(66px, 15vw, 116px);
    height: clamp(86px, 20vw, 148px);
    opacity: 0.066;
  }

  .home-main--botanical .botanical-layer__item--mid-11,
  .home-main--botanical .botanical-layer__item--mid-12,
  .home-main--botanical .botanical-layer__item--mid-13,
  .home-main--botanical .botanical-layer__item--mid-14,
  .home-main--botanical .botanical-layer__item--mid-15,
  .home-main--botanical .botanical-layer__item--mid-16,
  .home-main--botanical .botanical-layer__item--mid-17,
  .home-main--botanical .botanical-layer__item--mid-18,
  .home-main--botanical .botanical-layer__item--mid-19,
  .home-main--botanical .botanical-layer__item--mid-20,
  .home-main--botanical .botanical-layer__item--mid-21,
  .home-main--botanical .botanical-layer__item--mid-22,
  .home-main--botanical .botanical-layer__item--mid-23,
  .home-main--botanical .botanical-layer__item--mid-24 {
    display: block;
    width: clamp(58px, 14vw, 108px);
    height: clamp(78px, 18vw, 138px);
    opacity: 0.064;
  }

  .home-main--botanical .botanical-layer__item--mid-11 {
    left: 33%;
    top: 41%;
    background-image: url("assets/images/botanical/12.png");
    transform: translateX(-50%) rotate(92deg);
  }

  .home-main--botanical .botanical-layer__item--mid-12 {
    left: 52%;
    top: 47%;
    background-image: url("assets/images/botanical/3.png");
    transform: translateX(-50%) rotate(-22deg) scaleX(-1);
  }

  .home-main--botanical .botanical-layer__item--mid-13 {
    left: 77%;
    top: 53%;
    background-image: url("assets/images/botanical/31.png");
    transform: translateX(-50%) rotate(9deg);
  }

  .home-main--botanical .botanical-layer__item--mid-14 {
    left: 43%;
    top: 57%;
    background-image: url("assets/images/botanical/45.png");
    transform: translateX(-50%) rotate(-96deg);
  }

  .home-main--botanical .botanical-layer__item--mid-15 {
    left: 58%;
    top: 62%;
    background-image: url("assets/images/botanical/7.png");
    transform: translateX(-50%) rotate(0deg);
  }

  .home-main--botanical .botanical-layer__item--mid-16 {
    left: 21%;
    top: 69%;
    background-image: url("assets/images/botanical/38.png");
    transform: translateX(-50%) rotate(27deg);
  }

  .home-main--botanical .botanical-layer__item--mid-17 {
    left: 49%;
    top: 71%;
    background-image: url("assets/images/botanical/19.png");
    transform: translateX(-50%) rotate(-38deg);
  }

  .home-main--botanical .botanical-layer__item--mid-18 {
    left: 74%;
    top: 79%;
    background-image: url("assets/images/botanical/48.png");
    transform: translateX(-50%) rotate(101deg) scaleX(-1);
  }

  .home-main--botanical .botanical-layer__item--mid-19 {
    left: 12%;
    top: 28%;
    background-image: url("assets/images/botanical/20.png");
    transform: translateX(-50%) rotate(83deg);
  }

  .home-main--botanical .botanical-layer__item--mid-20 {
    left: 88%;
    top: 34%;
    background-image: url("assets/images/botanical/32.png");
    transform: translateX(-50%) rotate(-26deg) scaleX(-1);
  }

  .home-main--botanical .botanical-layer__item--mid-21 {
    left: 82%;
    top: 73%;
    background-image: url("assets/images/botanical/43.png");
    transform: translateX(-50%) rotate(-90deg);
  }

  .home-main--botanical .botanical-layer__item--mid-22 {
    left: 14%;
    top: 61%;
    background-image: url("assets/images/botanical/5.png");
    transform: translateX(-50%) rotate(18deg);
  }

  .home-main--botanical .botanical-layer__item--mid-23 {
    left: 86%;
    top: 66%;
    background-image: url("assets/images/botanical/24.png");
    transform: translateX(-50%) rotate(94deg);
  }

  .home-main--botanical .botanical-layer__item--mid-24 {
    left: 18%;
    top: 84%;
    background-image: url("assets/images/botanical/40.png");
    transform: translateX(-50%) rotate(-34deg);
  }

  .home #over-mij::before,
  .home #yogalessen::before,
  .home .section--grief-yoga::before,
  .home #rooster::before,
  .home .site-footer::before {
    opacity: 0.1;
  }

}

@media (max-width: 540px) {
  .section {
    padding: 2.9rem 0;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 1rem), var(--wa-max-width));
  }

  .nav-disclosure {
    top: 0.7rem;
    right: 0.7rem;
  }

  .site-nav--expandable {
    min-width: 94vw;
    max-width: 94vw;
    max-height: 78vh;
    overflow-y: auto;
    padding: 0.75rem;
  }

  .site-nav__list > .menu-item > a {
    padding: 0.58rem 0.7rem;
  }

  .hero-center-logo {
    width: clamp(136px, 50vw, 208px);
  }

  .hero-scroll-hint {
    left: 0.1rem;
    bottom: 1.9rem;
  }

  .hero-scroll-hint__text {
    letter-spacing: 0.1em;
    font-size: 0.62rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 7.2vw, 2.2rem);
  }

  .about-editorial-image img {
    min-height: 280px;
  }

  .hero-card--image-stack img,
  .feature-media img,
  .yoga-detail-hero__media img {
    min-height: 220px;
  }

  .button,
  .wp-block-button__link,
  input[type="submit"] {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.82rem 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .yoga-detail-quote__text {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .home-main--botanical .botanical-layer__item--mid-9,
  .home-main--botanical .botanical-layer__item--mid-10,
  .home-main--botanical .botanical-layer__item--mid-11,
  .home-main--botanical .botanical-layer__item--mid-12,
  .home-main--botanical .botanical-layer__item--mid-13,
  .home-main--botanical .botanical-layer__item--mid-14,
  .home-main--botanical .botanical-layer__item--mid-15,
  .home-main--botanical .botanical-layer__item--mid-16,
  .home-main--botanical .botanical-layer__item--mid-17,
  .home-main--botanical .botanical-layer__item--mid-18,
  .home-main--botanical .botanical-layer__item--mid-19,
  .home-main--botanical .botanical-layer__item--mid-20,
  .home-main--botanical .botanical-layer__item--mid-21,
  .home-main--botanical .botanical-layer__item--mid-22,
  .home-main--botanical .botanical-layer__item--mid-23,
  .home-main--botanical .botanical-layer__item--mid-24 {
    display: none;
  }
}

@media (max-width: 390px) {
  .section {
    padding: 2.4rem 0;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 0.8rem), var(--wa-max-width));
  }

  .nav-disclosure {
    top: 0.55rem;
    right: 0.55rem;
  }

  .site-nav--expandable {
    min-width: 96vw;
    max-width: 96vw;
    padding: 0.6rem;
  }

  .site-nav__list > .menu-item > a,
  .language-switcher__link {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7.4vw, 1.95rem);
  }

  .about-editorial-copy--intro p,
  .about-editorial-copy--reflection p,
  .feature-copy p,
  .section-copy p,
  .agenda-copy p {
    font-size: 0.95rem;
  }

  .hero-center-logo {
    width: clamp(120px, 46vw, 180px);
  }

  .hero-card--image-stack img,
  .feature-media img,
  .yoga-detail-hero__media img,
  .about-editorial-image img {
    min-height: 190px;
  }

  .agenda-date {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .agenda-day {
    font-size: 1.45rem;
  }

  .button,
  .wp-block-button__link,
  input[type="submit"] {
    font-size: 0.92rem;
    padding: 0.78rem 0.95rem;
  }

  .yoga-detail-quote__text {
    font-size: clamp(1.22rem, 7.2vw, 1.55rem);
  }
}

@media (max-width: 900px) {
  .nav-disclosure[open] {
    position: fixed;
    inset: 0;
    z-index: 80;
  }

  .nav-disclosure[open] .nav-disclosure__summary {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 82;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(39, 71, 52, 0.14);
    backdrop-filter: blur(2px);
  }

  .nav-disclosure[open] .menu-toggle__bars span {
    background: var(--wa-forest);
    box-shadow: none;
  }

  .nav-disclosure[open] .site-nav--expandable {
    position: fixed;
    inset: 0;
    min-width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(180deg, rgba(233, 242, 227, 0.98), rgba(226, 236, 219, 0.99));
    padding: 5.8rem 1.4rem 2.2rem;
    display: grid;
    place-items: center;
    overflow-y: auto;
  }

  .nav-disclosure[open] .site-nav--expandable::before,
  .nav-disclosure[open] .site-nav--expandable::after {
    content: "";
    position: fixed;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: sepia(35%) saturate(58%) hue-rotate(32deg) brightness(70%);
    opacity: 0.12;
    z-index: 0;
  }

  .nav-disclosure[open] .site-nav--expandable::before {
    left: -1.2rem;
    bottom: -2.1rem;
    width: clamp(160px, 40vw, 250px);
    height: clamp(210px, 48vw, 320px);
    background-image: url("assets/images/botanical/46.png");
    transform: rotate(-6deg);
  }

  .nav-disclosure[open] .site-nav--expandable::after {
    right: -0.9rem;
    top: 3.7rem;
    width: clamp(130px, 34vw, 210px);
    height: clamp(170px, 42vw, 280px);
    background-image: url("assets/images/botanical/22.png");
    transform: rotate(8deg) scaleX(-1);
  }

  .nav-disclosure[open] .site-nav__list {
    position: relative;
    z-index: 1;
    gap: 0.6rem;
    justify-items: center;
  }

  .nav-disclosure[open] .site-nav__list > .menu-item > a {
    width: auto;
    padding: 0.5rem 0.8rem;
    font-size: clamp(1.12rem, 4.6vw, 1.34rem);
    font-weight: 700;
    color: var(--wa-forest);
    text-align: center;
    border-radius: 14px;
  }

  .nav-disclosure[open] .language-switcher {
    position: fixed;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 0;
  }

  .nav-disclosure[open] .language-switcher__link {
    background: rgba(255, 255, 255, 0.48);
  }
}
