/* Local Fonts */
@font-face {
  font-family: 'Forum';
  src: url('../fonts/forum.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Patrick Hand';
  src: url('../fonts/patrick-hand.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --color-primary: #d5c8be;
  --color-secondary: #f3efec;
  --color-tertiary: #2c4858;
  --color-gray-light: #e8e6e6;
  --color-gray: #999997;
  --color-white: #ffffff;

  /* Layout */
  --content-max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Forum', serif;
  color: var(--color-gray);
  background-color: var(--color-secondary);
  line-height: 1.6;
}

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

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

/* Container */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: var(--color-white);
  color: #c4a08a;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header__logo-icon {
  height: 60px;
  width: auto;
}

.header__logo-text {
  height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__link {
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.header__link:hover {
  opacity: 0.7;
}

.header__link--active {
  border-bottom: 2px solid var(--color-tertiary);
}

/* Dropdown */
.header__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.header__dropdown-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 0.75rem;
  color: #c4a08a;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
}

.header__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-white);
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 300;
}

.header__dropdown:hover .header__dropdown-menu {
  display: block;
}

.header__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #c4a08a;
  transition: background-color 0.2s;
}

.header__dropdown-link:hover {
  background-color: var(--color-secondary);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #c4a08a;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Mobile */
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
    z-index: 101;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 100;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav .header__link {
    font-size: 1.5rem;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header__dropdown {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .header__dropdown-toggle {
    display: inline-block;
    font-size: 1rem;
  }

  .header__dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    display: none;
    min-width: auto;
  }

  .header__dropdown.is-open .header__dropdown-menu {
    display: block;
  }

  .header__dropdown:hover .header__dropdown-menu {
    display: none;
  }

  .header__dropdown.is-open .header__dropdown-menu {
    display: block;
  }

  .header__dropdown-link {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: var(--color-white);
}

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

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

.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrapper {
  display: inline-block;
  border: 4px solid var(--color-gray);
}

.hero__image {
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
}

.hero__title {
  text-transform: uppercase;
  color: #000000;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero__description {
  color: #000000;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    gap: 3rem;
  }

  .hero__left {
    flex: 1;
  }

  .hero__right {
    flex: 1;
  }

  .hero__title {
    font-size: 3rem;
  }
}

/* About Preview Section */
.about-preview {
  background-color: var(--color-secondary);
  padding: 4rem 0;
}

.about-preview__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-preview__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-preview__box {
  background-color: var(--color-primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.about-preview__title {
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.about-preview__subtitle {
  color: var(--color-white);
  font-size: 1rem;
}

.about-preview__philosophy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-preview__philosophy-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.about-preview__quote {
  color: var(--color-gray);
  font-family: 'Patrick Hand', cursive;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--color-primary);
}

.about-preview__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: opacity 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.about-preview__button:hover {
  opacity: 0.8;
}

.about-preview__right {
  display: flex;
  flex-direction: column;
  min-height: calc(2rem + 400px);
}

.about-preview__image-wrapper {
  position: relative;
  display: inline-block;
}

.about-preview__square {
  position: absolute;
  top: 1rem;
  left: -1rem;
  right: 1rem;
  bottom: -1rem;
  background-color: var(--color-primary);
  z-index: 1;
}

.about-preview__image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  width: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-preview__container {
    flex-direction: row;
    align-items: stretch;
  }

  .about-preview__left {
    flex: 1;
  }

  .about-preview__right {
    flex: 1;
  }


  .about-preview__title {
    font-size: 2.5rem;
  }
}

/* Coaching Preview Section */
.coaching-preview {
  background-color: var(--color-primary);
  padding: 4rem 0;
}

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

.coaching-preview__left {
  display: flex;
  flex-direction: column;
}

.coaching-preview__title {
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.coaching-preview__quote {
  color: var(--color-tertiary);
  font-family: 'Patrick Hand', cursive;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--color-white);
}

.coaching-preview__right p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.coaching-preview__right p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .coaching-preview__container {
    flex-direction: row;
    align-items: flex-start;
  }

  .coaching-preview__left {
    flex: 1;
  }

  .coaching-preview__right {
    flex: 1;
  }

  .coaching-preview__title {
    font-size: 2.5rem;
  }
}

/* Services Section */
.services {
  background-color: var(--color-gray-light);
  padding: 5rem 0 4rem;
}

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

.services__card {
  background-color: var(--color-white);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.services__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
}

.services__title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 1.5rem;
}

.services__list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__list li {
  color: #000000;
  margin-bottom: 0.5rem;
}

.services__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  transition: opacity 0.2s;
  align-self: center;
}

.services__button:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .services__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Methods Section */
.methods {
  background-color: var(--color-secondary);
  padding: 4rem 0;
}

.methods__title {
  font-size: 2rem;
  font-weight: normal;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
}

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

.methods__card {
  background-color: var(--color-white);
  padding: 1.5rem;
  text-align: center;
  border-left: 3px solid var(--color-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.methods__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.methods__card-text {
  color: var(--color-tertiary);
  font-size: 1.125rem;
}

.methods__more {
  text-align: center;
  color: var(--color-tertiary);
  font-size: 1.125rem;
  font-style: italic;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .methods__title {
    font-size: 2.5rem;
  }

  .methods__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Accordion */
.accordion {
  margin-top: 2rem;
  border-top: 1px solid var(--color-gray-light);
}

.accordion__item {
  border-bottom: 1px solid var(--color-gray-light);
}

.accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0.5rem;
  cursor: pointer;
  list-style: none;
  color: var(--color-tertiary);
  transition: color 0.2s;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary:hover {
  color: var(--color-primary);
}

.accordion__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.accordion__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.2s;
}

.accordion__item[open] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  padding: 0.5rem 0.5rem 1.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--color-tertiary);
  padding: 4rem 0;
}

.contact__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact__info {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-left: 3px solid var(--color-primary);
}

.contact__info-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__address,
.contact__phone {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact__phone a {
  color: var(--color-white);
  transition: opacity 0.2s;
}

.contact__phone a:hover {
  opacity: 0.7;
}

.contact__form {
  flex: 1;
}

@media (min-width: 768px) {
  .contact__container {
    flex-direction: row;
    align-items: center;
  }

  .contact__info {
    flex: 0 0 280px;
    text-align: left;
  }
}

.contact__row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact__field {
  position: relative;
  flex: 1;
}

.contact__field--full {
  margin-bottom: 2rem;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 1rem 0 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-gray);
  outline: none;
  transition: border-color 0.3s;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__input:focus,
.contact__textarea:focus {
  border-bottom-color: var(--color-white);
}

.contact__label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 1rem;
  color: var(--color-gray);
  pointer-events: none;
  transition: all 0.3s;
}

.contact__input:focus ~ .contact__label,
.contact__input:not(:placeholder-shown) ~ .contact__label,
.contact__textarea:focus ~ .contact__label,
.contact__textarea:not(:placeholder-shown) ~ .contact__label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.contact__button {
  display: block;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact__button:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .contact__row {
    flex-direction: row;
  }
}

/* Page Styles */
.page {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.page__header {
  background-color: var(--color-secondary);
  padding: 3rem 0;
  text-align: center;
}

.page__title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page__title {
    font-size: 3rem;
  }
}

/* About Page */
.about__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__left {
  flex: 1;
}

.about__right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about__image-wrapper {
  position: relative;
  display: inline-block;
}

.about__square {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: var(--color-primary);
  z-index: 1;
}

.about__image {
  position: relative;
  max-height: 400px;
  width: auto;
  height: auto;
  z-index: 2;
}

.about__subtitle {
  font-size: 1.5rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-tertiary));
}

.timeline__item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -1.75rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 3px solid var(--color-primary);
  z-index: 1;
  transition: transform 0.2s, border-color 0.2s;
}

.timeline__item:hover .timeline__marker {
  transform: scale(1.2);
  border-color: var(--color-tertiary);
}

.timeline__content {
  background-color: var(--color-secondary);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  border-left: 3px solid var(--color-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.timeline__item:hover .timeline__content {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline__year {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-tertiary);
  background-color: var(--color-white);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.timeline__text {
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.timeline__link {
  color: var(--color-tertiary);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.timeline__link:hover {
  opacity: 0.7;
}


.about__description {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about__section {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about__highlight {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--color-tertiary);
  font-style: italic;
}

@media (min-width: 768px) {
  .about__container {
    flex-direction: row;
    gap: 3rem;
  }
}

/* Fundament Page */
/* Fundament Page */
.fundament {
  padding: 2rem 0;
}

.fundament__title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 1.5rem;
}

.fundament__text {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fundament__list {
  color: #000000;
  line-height: 1.8;
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.fundament__list-item {
  margin-bottom: 0.5rem;
}

.fundament__hero-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #000000;
  margin: 0 0 1rem 0;
}

.fundament__quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gray);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--color-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .fundament__hero-title {
    font-size: 3rem;
  }
}

.fundament__principles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.fundament__principle {
  background-color: var(--color-gray-light);
  border-left: 3px solid var(--color-primary);
  padding: 1rem 1.25rem;
}

.fundament__principle-lead {
  display: block;
  font-family: 'Patrick Hand', cursive;
  color: var(--color-tertiary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.fundament__principle-text {
  color: #000000;
  line-height: 1.7;
  margin: 0;
}

.fundament-steps {
  background-color: var(--color-primary);
  padding: 4rem 0;
  color: var(--color-tertiary);
}

.fundament-steps__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fundament-steps__body {
  flex: 1;
}

.fundament-steps__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fundament-steps__image-wrapper {
  position: relative;
  display: inline-block;
}

.fundament-steps__square {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: var(--color-white);
  z-index: 1;
}

.fundament-steps__image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  width: auto;
  height: auto;
  max-width: 100%;
}

.fundament-steps__title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
}

.fundament-steps__quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-tertiary);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--color-white);
  margin-bottom: 2.5rem;
}

.fundament-steps__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundament-steps__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fundament-steps__number {
  font-family: 'Forum', serif;
  font-size: 3rem;
  color: var(--color-white);
  line-height: 1;
  min-width: 4rem;
}

.fundament-steps__heading {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--color-tertiary);
  margin-bottom: 0.25rem;
}

.fundament-steps__text {
  color: var(--color-tertiary);
  line-height: 1.6;
  margin: 0;
}

.fundament-steps__closing {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.25rem;
  color: var(--color-tertiary);
  font-style: italic;
  text-align: center;
  margin: 2rem 0 0 0;
}

@media (min-width: 768px) {
  .fundament-steps__container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .fundament-steps__title {
    font-size: 3rem;
  }

  .fundament-steps__number {
    font-size: 4rem;
    min-width: 5rem;
  }
}

/* Coaching Page */
.coaching-hero {
  background-color: var(--color-secondary);
  padding: 6rem 0 4rem;
}

.coaching-hero__container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.coaching-hero__image {
  display: none;
}

@media (min-width: 768px) {
  .coaching-hero__image {
    display: block;
    position: absolute;
    top: -2rem;
    left: 1rem;
    z-index: 1;
    width: 960px;
    max-width: calc(100% - 2rem);
    height: calc(100%);
    object-fit: cover;
  }
}

.coaching-hero__box {
  position: relative;
  background-color: var(--color-white);
  padding: 2rem;
  z-index: 2;
  max-width: 960px;
}

.coaching-hero__title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #000000;
  margin: 0 0 1rem 0;
}

.coaching-hero__quote {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gray);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--color-primary);
  margin-bottom: 1.5rem;
}

.coaching-hero__description {
  color: #000000;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .coaching-hero__title {
    font-size: 3rem;
  }
}

/* Coaching Section */
.coaching-section {
  background-color: var(--color-white);
  padding: 4rem 0;
}

.coaching-section--secondary {
  background-color: var(--color-secondary);
}

.coaching-section--plain {
  background-color: transparent;
  padding: 2rem 0;
}

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

.coaching-section__container + .coaching-section__container {
  margin-top: 3rem;
}


.coaching-section__left {
  flex: 1;
}

.coaching-section__title {
  font-size: 2rem;
  font-weight: normal;
  color: #000000;
  margin-bottom: 1.5rem;
}

.coaching-section__subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
}

.coaching-section__subheading {
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-gray);
  margin-bottom: 0.25rem;
}

.coaching-section__text {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.coaching-section__list {
  color: #000000;
  line-height: 1.8;
  padding-left: 1.5rem;
}

.coaching-section__list li {
  margin-bottom: 0.5rem;
}

.coaching-section__text--tight {
  margin-bottom: 0.25rem;
}

.coaching-section__list--tight {
  margin-bottom: 1.5rem;
}

.coaching-section__list--tight li {
  margin-bottom: 0.25rem;
}

.coaching-section__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.coaching-section__button:hover {
  opacity: 0.8;
}

.coaching-section__button--desktop {
  display: none;
}

.coaching-section__button--center {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 2rem auto 0;
}

.coaching-section__button--mobile {
  display: block;
  margin-top: 2rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .coaching-section__button--desktop {
    display: inline-block;
  }

  .coaching-section__button--desktop.coaching-section__button--center {
    display: block;
  }

  .coaching-section__button--mobile {
    display: none;
  }
}

.coaching-section__right {
  flex: 1;
}

.coaching-section__right:has(.coaching-section__image-wrapper),
.coaching-section__left:has(.coaching-section__image-wrapper) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coaching-section__image-wrapper {
  position: relative;
  display: inline-block;
}

.coaching-section__square {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: var(--color-primary);
  z-index: 1;
}

.coaching-section__square--bottom-left {
  top: 1rem;
  left: -1rem;
  right: 1rem;
  bottom: -1rem;
}

.coaching-section__image {
  position: relative;
  max-height: 400px;
  width: auto;
  height: auto;
  z-index: 2;
}

@media (min-width: 768px) {
  .coaching-section__container {
    flex-direction: row;
    gap: 3rem;
  }

  .coaching-section__title {
    font-size: 2.5rem;
  }
}

/* Cookie Banner */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-overlay.is-hidden {
  display: none;
}

.cookie-banner {
  background-color: var(--color-white);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cookie-banner__default,
.cookie-banner__privacy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.cookie-banner__default[hidden],
.cookie-banner__privacy[hidden] {
  display: none;
}

.cookie-banner__privacy-content {
  flex: 1;
  overflow-y: auto;
  text-align: left;
  padding-right: 0.5rem;
  margin-bottom: 1.5rem;
}

.cookie-banner__privacy-content .imprint__title {
  font-size: 1.125rem;
  margin-top: 0;
}

.cookie-banner__privacy-content .imprint__section:first-child .imprint__title {
  margin-top: 0;
}

.cookie-banner__button--back {
  background-color: var(--color-primary);
  color: var(--color-white);
  align-self: center;
}

.cookie-banner__title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
}

.cookie-banner__text {
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner__button {
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}

.cookie-banner__button:hover {
  opacity: 0.8;
}

.cookie-banner__button--accept,
.cookie-banner__button--decline {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Footer */
.footer {
  background-color: var(--color-tertiary);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__copyright {
  color: var(--color-gray);
  font-size: 0.875rem;
}

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

.footer__link {
  color: var(--color-gray);
  font-size: 0.875rem;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.footer__link:hover {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Imprint Page */
.imprint {
  max-width: 800px;
}

.imprint__section {
  margin-bottom: 2rem;
}

.imprint__title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
}

.imprint__subtitle {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--color-tertiary);
  margin-bottom: 0.5rem;
}

.imprint__text {
  color: #000000;
  line-height: 1.8;
}

.imprint__link {
  color: var(--color-tertiary);
  transition: opacity 0.2s;
}

.imprint__link:hover {
  opacity: 0.7;
}

.imprint__list {
  color: #000000;
  line-height: 1.8;
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.imprint__list li {
  margin-bottom: 0.25rem;
}

.cookie-banner__link {
  color: var(--color-tertiary);
  text-decoration: underline;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.cookie-banner__link:hover {
  opacity: 0.7;
}

@media (min-width: 480px) {
  .cookie-banner__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
