@property --angle-1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -75deg;
}

@property --angle-2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}

:root {
  --font-body: "Soleil", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-hero: "Cormorant Garamond", "Garamond", "Times New Roman", serif;

  --nav-gap: 36px;
  --pad-y: 18px;
  --pad-x: 50px;
  --header-height: 72px;

  --global--size: clamp(2rem, 4vw, 5rem);
  --anim--hover-time: 400ms;
  --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);

  --color-text: rgb(87, 87, 82);
  --color-green: rgb(163, 170, 157);
  --color-white: #ffffff;
  --radius-md: 12px;
  --radius-lg: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-width: none;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

section,
header,
footer,
div,
article,
figure {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   TYPOGRAFIE
   ========================= */

.section-title {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  line-height: 1.2;
}

.section-subtitle {
  margin: 3rem 0 1rem;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  text-align: left;
  line-height: 1.2;
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1101;
  pointer-events: auto;
  border: 0;
  background: transparent;
  padding: 8px;
  margin: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  gap: var(--nav-gap);
  padding: var(--pad-y) var(--pad-x);
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
}

.nav__link {
  display: inline-block;
  width: auto;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: none;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.45);
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
  visibility: visible;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  transform: scale(1.06);
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* @media (max-width: 900px) {
  .site-header {
    background-color: rgba(255, 255, 255, 0.82);
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 14px 18px;
  }

  .nav__link {
    font-size: 14px;
    width: auto;
    padding: 0;
    text-align: center;
  }

  .nav-toggle {
    display: none;
  }
} */

@media (max-width: 900px) {
  :root {
    --nav-gap: 10px;
    --pad-x: 12px;
    --pad-y: 12px;
    --header-height: 60px;
  }

  .site-header {
    min-height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.55);
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 10px 14px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 0s;
  }

  .nav__link {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: none;
    text-shadow: none;

    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open .nav__link:nth-child(1) { transition-delay: 40ms; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 80ms; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 120ms; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 160ms; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 200ms; }
}


@media (max-width: 640px) {
  :root {
    --nav-gap: 10px;
    --pad-x: 12px;
    --pad-y: 12px;
    --header-height: 60px;
  }

  .site-header {
    min-height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.55);
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 10px 14px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 0s;
  }

  .nav__link {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: none;
    text-shadow: none;

    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open .nav__link:nth-child(1) { transition-delay: 40ms; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 80ms; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 120ms; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 160ms; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 200ms; }
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/endless.jpg");
  background-repeat: repeat-x;
  background-position: 0% 50%;
  background-size: auto 110%;
  transform: scale(1.03);
  animation: hero-pan 60s linear infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}

.hero__content {
  text-align: center;
  padding: 24px;
  transform: translateY(3vh);
}

.hero-title {
  margin: 0;
  font-family: var(--font-hero);
  line-height: 1.05;
  color: var(--color-white);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.01em;
}

.hero-title span {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* =========================
   GLASS BUTTON
   ========================= */

.button-wrap {
  position: relative;
  z-index: 2;
  border-radius: 999vw;
  background: transparent;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.button-shadow {
  --shadow-cuttoff-fix: 2em;
  position: absolute;
  top: calc(0% - var(--shadow-cuttoff-fix) / 2);
  left: calc(0% - var(--shadow-cuttoff-fix) / 2);
  width: calc(100% + var(--shadow-cuttoff-fix));
  height: calc(100% + var(--shadow-cuttoff-fix));
  filter: blur(clamp(2px, 0.125em, 12px));
  -webkit-filter: blur(clamp(2px, 0.125em, 12px));
  overflow: visible;
  pointer-events: none;
}

.button-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  left: calc(var(--shadow-cuttoff-fix) - 0.875em);
  padding: 0.125em;
  box-sizing: border-box;
  border-radius: 999vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 1;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.button {
  --border-width: clamp(1px, 0.0625em, 4px);
  all: unset;
  position: relative;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  background: linear-gradient(
    -75deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 999vw;
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
    0 0 0 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  -webkit-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.button span {
  position: relative;
  display: block;
  padding-inline: 1.5em;
  padding-block: 0.875em;
  user-select: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.1);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

.button:hover {
  transform: scale(0.975);
  backdrop-filter: blur(0.01em);
  -webkit-backdrop-filter: blur(0.01em);
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25),
    0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.5),
    0 0 0 0 rgba(255, 255, 255, 1);
}

.button:hover span {
  text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.12);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: calc(100% + var(--border-width));
  height: calc(100% + var(--border-width));
  top: calc(0% - var(--border-width) / 2);
  left: calc(0% - var(--border-width) / 2);
  padding: var(--border-width);
  box-sizing: border-box;
  border-radius: 999vw;
  background:
    conic-gradient(
      from var(--angle-1) at 50% 50%,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0) 5% 40%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0) 60% 95%,
      rgba(0, 0, 0, 0.5)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
  transition: all var(--anim--hover-time) var(--anim--hover-ease), --angle-1 500ms ease;
}

.button:hover::after {
  --angle-1: -125deg;
}

.button:active::after {
  --angle-1: -75deg;
}

.button span::after {
  content: "";
  position: absolute;
  top: calc(0% + var(--border-width) / 2);
  left: calc(0% + var(--border-width) / 2);
  z-index: 3;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  box-sizing: border-box;
  border-radius: 999vw;
  overflow: clip;
  background: linear-gradient(
    var(--angle-2),
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 40% 50%,
    rgba(255, 255, 255, 0) 55%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
  transition:
    background-position calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease),
    --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.button:hover span::after {
  background-position: 25% 50%;
}

.button:active span::after {
  background-position: 50% 15%;
  --angle-2: -15deg;
}

.button-wrap:has(.button:hover) .button-shadow {
  filter: blur(clamp(2px, 0.0625em, 6px));
  -webkit-filter: blur(clamp(2px, 0.0625em, 6px));
  transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

.button-wrap:has(.button:hover) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.875em);
  opacity: 1;
}

.button-wrap:has(.button:active) {
  transform: rotate3d(1, 0, 0, 25deg);
}

.button-wrap:has(.button:active) .button {
  box-shadow:
    inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
    inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
    0 0.125em 0.125em -0.125em rgba(0, 0, 0, 0.2),
    0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
    0 0.225em 0.05em 0 rgba(0, 0, 0, 0.05),
    0 0.25em 0 0 rgba(255, 255, 255, 0.75),
    inset 0 0.25em 0.05em 0 rgba(0, 0, 0, 0.15);
}

.button-wrap:has(.button:active) .button-shadow {
  filter: blur(clamp(2px, 0.125em, 12px));
  -webkit-filter: blur(clamp(2px, 0.125em, 12px));
}

.button-wrap:has(.button:active) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  opacity: 0.75;
}

.button-wrap:has(.button:active) span {
  text-shadow: 0.025em 0.25em 0.05em rgba(0, 0, 0, 0.12);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  animation: scroll-fade 1s ease 1.2s forwards;
}

.scroll-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255,255,255,0.9);
  border-bottom: 2px solid rgba(255,255,255,0.9);
  transform: rotate(45deg);
  animation: scroll-chevron 1.6s ease-in-out infinite;
}

@keyframes scroll-chevron {

  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }

  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.8;
  }

}

@keyframes scroll-fade {
  to {
    opacity: 1;
  }
}

/* =========================
   SECTION 2
   ========================= */

.section-two {
  padding: 120px 0 0;
  background: #fff;
  color: var(--color-text);
}

.section-two__inner {
  display: flex;
  justify-content: center;
  padding: 0 40px 80px;
}

.section-two__text {
  width: 60vw;
  max-width: 900px;
  text-align: left;
  color: var(--color-text);
  font-size: 20px;
}

.section-two__text p {
  margin: 0 0 20px;
  line-height: 30px;
  font-weight: 300;
}

.section-two__images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.section-two__images > .img {
  margin: 0;
  flex: 0 0 auto;
}

.section-two__images .img--1 {
  width: 27%;
  height: 290px;
}

.section-two__images .img--2 {
  width: 27%;
  height: 425px;
}

.img--2-mobile {
  display: none;
}

.section-two__images .img--3 {
  width: 34%;
  height: 355px;
}

.section-two__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.img--2 img {
  object-position: center;
}



.section-two__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.img--2 img {
  object-position: center;
}

/* =========================
   SECTION 3
   ========================= */

.section-three {
  padding: 120px 0 120px;
  background: var(--color-green);
  color: #fffdfd;
  font-weight: 300;
}

.section-three__inner {
  display: flex;
  justify-content: center;
  padding: 0 40px 60px;
}

.section-three__text {
  width: 60vw;
  max-width: 900px;
  text-align: left;
  font-size: 20px;
}

.section-three__text p {
  margin: 0 0 20px;
  line-height: 30px;
  font-weight: 300;
}

.section-three__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5vw;
  align-items: start;
  padding-left: 20vw;
  padding-right: 20vw;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__media,
.card__media-2 {
  width: 70%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.card__media img,
.card__media-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__link {
  display: inline-block;
  width: fit-content;
  color: var(--color-white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transform: scale(1);
  transition: transform 160ms ease;
}

.card__link:hover,
.card__link:focus-visible {
  transform: scale(1.04);
}

/* =========================
   SECTION 4
   ========================= */

.section-four {
  padding: 120px 0;
  background: #fff;
  color: var(--color-text);
}

.section-four__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5vw;
  align-items: start;
  padding-left: 10vw;
  padding-right: 10vw;
}

.section-four__text {
  text-align: left;
  font-size: 20px;
  font-weight: 300;
}

.section-four__text p {
  margin: 0 0 20px;
  line-height: 30px;
  font-weight: 300;
}

.section-four__media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.section-four__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* =========================
   SECTION 5
   ========================= */

.section-five {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 300;
}

.section-five h2 {
  font-weight: 600;
}

.section-five__grid {
  display: grid;
  grid-template-columns: 50vw 50vw;
  align-items: center;
}

.section-five__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.section-five__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-five__content {
  padding: 80px 5vw;
}

.section-five__content p {
  margin: 0 0 18px;
  line-height: 20px;
  font-weight: 300;
}

.section-five__button,
.section-coaching__button,
.section-workshops__button {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff;
  color: var(--color-green);
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: transform 160ms ease;
}

.section-five__button:hover,
.section-five__button:focus-visible,
.section-coaching__button:hover,
.section-coaching__button:focus-visible,
.section-workshops__button:hover,
.section-workshops__button:focus-visible {
  transform: scale(1.02);
}

/* =========================
   SECTION 6 / CAROUSEL
   ========================= */

.section-six {
  padding: 120px 10vw 120px;
  background: #fff;
  color: var(--color-text);
  font-weight: 300;
}

.section-six__title,
.section-six h2 {
  margin: 0 0 48px;
  text-align: center;
  font-family: var(--font-hero);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--color-text);
}

.section-six span {
  font-size: 18px;
  font-weight: 300;
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 16px;
  padding: 6px 0;
  overflow-x: auto;
  scroll-padding: 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.quote {
  flex: 0 0 calc((80% - 2 * 16px - 2 * 5vw) / 2);
  min-height: 160px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  scroll-snap-align: start;
  background: rgba(87, 87, 82, 0);
  border-radius: var(--radius-lg);
}

.quote p {
  margin: 0;
  font-family: var(--font-hero);
  font-style: italic;
  color: var(--color-text);
  line-height: 30px;
  font-size: 16px;
  font-weight: 300;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  pointer-events: auto;
  font-size: 22px;
  line-height: 1;
}

.carousel__btn--prev {
  left: -50px;
}

.carousel__btn--next {
  right: -50px;
}

.carousel__btn:focus-visible {
  outline: 2px solid rgba(87, 87, 82, 0.35);
  outline-offset: 3px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  min-height: calc(15vh + 30vh + 5vh + 140px);
  padding-top: 10vh;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-hero);
}

.site-footer__title {
  margin: 0;
  text-align: center;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  color: var(--color-white);
}

.site-footer h2 {
  display: inline-block;
  margin-top: 12px;
  font: var(--font-hero);
  font-size: 30px;
  letter-spacing: 0.08em;
}

.site-footer span {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.08em;
}

.site-footer__bottom {
  margin-top: auto;
  padding-top: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}

.footer-link {
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  transform: scale(1.05);
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-white);
  text-decoration: none;
  transition: transform 160ms ease;
}

.footer-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.footer-icon:hover,
.footer-icon:focus-visible {
  transform: scale(1.08);
}

/* =========================
   KONTAKT
   ========================= */

.kontakt {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.kontakt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/endless.jpg");
  background-repeat: repeat-x;
  background-position: 0% 50%;
  background-size: auto 110%;
  transform: scale(1.03);
  animation: hero-pan 60s linear infinite;
  z-index: -2;
}

.kontakt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}

.kontakt__content {
  transform: none;
}

.kontakt-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
  text-align: center;
}

.kontakt-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-hero);
  line-height: 1.05;
  color: var(--color-white);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.01em;
}

.kontakt-title span {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.kontakt-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.kontakt-icon {
  display: inline-grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: var(--color-white);
  text-decoration: none;
  transition: transform 160ms ease;
}

.kontakt-icon svg {
  width: 60px;
  height: 60px;
  fill: currentColor;
  display: block;
}

.kontakt-icon:hover,
.kontakt-icon:focus-visible {
  transform: scale(1.08);
}

/* =========================
   COACHING
   ========================= */

.section-coaching {
  min-height: 100vh;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 300;
}

.section-coaching__header {
  margin-left: 50px;
  padding-top: 60px;
}

.section-coaching h2 {
  font-weight: 600;
}

.section-coaching h3 {
  font-weight: 400;
}

.section-coaching__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.section-coaching__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.section-coaching__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-coaching__content {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section-coaching__items {
  display: grid;
  gap: 16px;
}

.section-coaching__content p {
  line-height: 20px;
  font-weight: 300;
}

/* =========================
   WORKSHOPS
   ========================= */

.section-workshops {
  height: 100vh;
  overflow: hidden;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 300;
}

.section-workshops__header {
  padding-left: 50px;
  padding-top: 60px;
}

.section-workshops h2 {
  font-weight: 600;
}

.section-workshops h3 {
  font-weight: 400;
}

.section-workshops__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 0;
}

.section-workshops__media {
  aspect-ratio: 4 / 4;
  overflow: hidden;
}

.section-workshops__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% -150px;
}

.section-workshops__content {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section-workshops__items {
  display: grid;
  gap: 16px;
}

.section-workshops__content p {
  line-height: 20px;
  font-weight: 300;
}

/* =========================
   ANIMATION / REDUCED MOTION
   ========================= */

@keyframes hero-pan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .kontakt::before {
    animation: none;
  }
}

/* =========================
   TOUCH / COARSE POINTER
   ========================= */

@media (hover: none) and (pointer: coarse) {
  .button::after,
  .button:hover::after,
  .button:active::after {
    --angle-1: -75deg;
  }

  .button span::after,
  .button:active span::after {
    --angle-2: -45deg;
  }
}

/* =========================
   IMPRESSUM
   ========================= */
.section-impressum{
  padding: 20px;
  padding-top: 100px;
  height: 100vh;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  .section-two,
  .section-three,
  .section-four,
  .section-six {
    padding-top: 50px;
  }

  .section-three {
    padding-bottom: 90px;
  }

  .section-two__text,
  .section-three__text,
  .section-four__text {
    font-size: 18px;
  }

  .section-two__text p,
  .section-three__text p,
  .section-four__text p {
    line-height: 1.7;
  }
}

/* =========================
   TABLET / SMALL LAPTOP
   ========================= */

@media (max-width: 900px) {
  .site-header {
    background-color: transparent;
  }

  .section-subtitle h3{
    font-size: 12px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__content {
    padding: 16px;
    transform: translateY(0);
  }

  /* .hero-title {
    font-size: clamp(34px, 8vw, 56px);
    line-height: 1.08;
  }

  .hero-title span {
    font-size: clamp(15px, 3vw, 20px);
    letter-spacing: 0.06em;
  }

  .button {
    max-width: 100%;
  }

  .button span {
    font-size: 18px;
    padding-inline: 1.2em;
    padding-block: 0.8em;
  } */


  .hero-title {
    font-size: clamp(30px, 9vw, 34px);
  }

  .hero-title span {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .button-wrap {
    width: min(100%, 250px);
    margin-inline: auto;
  }

  .button {
    display: block;
    width: 100%;
    text-align: center;
  }

  .button span {
    font-size: 14px;
    padding-inline: 1em;
    padding-block: 0.9em;
  }


  .section-title {
    font-size: 26px;
  }

  .section-two {
    padding: 50px 0 0;
  }

  .section-two__inner {
    padding: 0 24px 48px;
  }

  .section-two__text {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .section-two__images {
    width: 100%;
    gap: 10px;
    padding: 0 12px;
  }

  .section-two__images .img--1,
  .section-two__images .img--2,
  .section-two__images .img--3 {
    flex-basis: auto;
  }

  .section-three {
    padding: 50px 0 50px;
  }

  .section-three__inner {
    padding: 0 24px 40px;
  }

  .section-three__text {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .section-three__cards {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .card__link {
    font-size: 18px;
  }

  .section-four {
    padding: 50px 0;
  }

  .section-four__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-four__text {
    font-size: 18px;
  }

  .section-four__media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .section-five__grid {
    grid-template-columns: 1fr;
  }

  .section-five__media {
    width: 100%;
  }

  .section-five__content {
    padding: 40px 24px 56px;
  }

  .section-five__content p {
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .section-six {
    margin-top: 0;
    padding: 90px 24px 90px;
  }

  .section-six__title,
  .section-six h2 {
    margin-bottom: 32px;
  }

 
  /* .quote{
  flex: 0 0 calc((100% - 3*16px - 2*5vw - 80px) / 4);
    min-height: auto;
    padding: 18px 16px;
  } */

    .quote {
    flex: 0 0 50%;
    padding: 16px 40px;
  }

  .quote p {
    font-size: 15px;
    line-height: 1.7;
  }

  .section-six span {
    font-size: 14px;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
  }

  .carousel__btn--prev {
    left: -30px;
  }

  .carousel__btn--next {
    right: -30px;
  }

  .site-footer {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .site-footer__title {
    padding: 0 20px;
    font-size: clamp(32px, 8vw, 54px);
  }

  .site-footer__bottom {
    padding-top: 80px;
    gap: 28px;
    flex-wrap: wrap;
  }

  .section-coaching {
    min-height: auto;
  }

  .section-coaching__header {
    margin-left: 0;
    padding: 48px 24px 0;
  }

  .section-coaching__grid {
    grid-template-columns: 1fr;
  }

  .section-coaching__content {
    padding: 32px 24px 56px;
  }

  .section-coaching__content p {
    line-height: 1.6;
  }

  .section-workshops {
    height: auto;
    min-height: auto;
  }

  .section-workshops__header {
    padding: 48px 24px 0;
  }

  .section-workshops__grid {
    grid-template-columns: 1fr;
  }

  .section-workshops__media {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .section-workshops__media img {
    object-position: center;
  }

  .section-workshops__content {
    padding: 32px 24px 56px;
  }

  .section-workshops__content p {
    line-height: 1.6;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px) {
  :root {
    --nav-gap: 10px;
    --pad-x: 12px;
    --pad-y: 12px;
    --header-height: 60px;
  }

@media (max-width: 640px) {
  .site-header {
    min-height: var(--header-height);
    background-color: transparent;
    pointer-events: auto;
  }

  .section-subtitle {
    font-size: 20px;
  }

.section-impressum h1{
  font-size: 1.3em;
}

.section-impressum h2{
  font-size: 1.3em;
}

.section-impressum h3{
  font-size: 1.3em;
}

.section-impressum{
  height: 100vh;

}

  .hero-title {
    font-size: clamp(30px, 9vw, 34px);
  }

  .hero-title span {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .button-wrap {
    width: min(100%, 250px);
    margin-inline: auto;
  }

  .button {
    display: block;
    width: 100%;
    text-align: center;
  }

  .button span {
    font-size: 14px;
    padding-inline: 1em;
    padding-block: 0.9em;
  }

  .section-title {
    font-size: 22px;
  }

  .section-two__inner,
  .section-three__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-two__text,
  .section-three__text,
  .section-four__text {
    font-size: 14px;
    hyphens:auto;
  }

  .section-two__text p,
  .section-three__text p,
  .section-four__text p {
    line-height: 1.65;
  }

@media (max-width: 640px) {
  .section-two__images {
    display: block;
    padding: 0 10px;
  }

  .section-two__images .img--1,
  .section-two__images .img--3,
  .section-two__images .img--2 {
    display: none;
  }

  .section-two__images .img--2-mobile {
    display: block;
    width: 75%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: center;
    margin-bottom: 50px;
  }

  .section-two__images .img--2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

  .img--2 img {
    object-position: center;
  }

  .section-three__cards,
  .section-four__grid,
  .section-five__content,
  .section-six,
  .section-coaching__content,
  .section-workshops__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-workshops__media {
    aspect-ratio: 3 / 4;
    width: 75%;
  }

  .section-five__content {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .section-five__button,
  .section-coaching__button,
  .section-workshops__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-height: 46px;
    text-align: center;
  }

  .section-six {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-six__title,
  .section-six h2 {
    font-size: 22px;
  }

.carousel{
  margin: 20px;
}

  .carousel__track {
    gap: 12px;
  }

  .quote {
    flex: 0 0 100%;
    padding: 16px 14px;
  }

  .quote p {
    font-size: 15px;
    line-height: 1.65;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .carousel__btn--prev {
    left: -30px;
  }

  .carousel__btn--next {
    right: -30px;
  }

  .site-footer {
    padding-top: 56px;
    padding-bottom: 28px;
  }

  .site-footer__title {
    font-size: clamp(28px, 10vw, 40px);
    line-height: 1.1;
  }

  .site-footer span {
    margin-top: 8px;
    font-size: 14px;
  }

@media (max-width: 640px) {
  .site-footer__bottom {
    padding-top: 48px;
    gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

  .footer-link {
    font-size: 14px;
  }

  .kontakt {
    padding-left: 16px;
    padding-right: 16px;
  }

  .kontakt-center {
    padding: 16px;
    gap: 18px;
  }

  .kontakt-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .kontakt-title span {
    font-size: 14px;
  }

  .kontakt-icon {
    width: 72px;
    height: 72px;
  }

  .kontakt-icon svg {
    width: 42px;
    height: 42px;
  }
}}