@font-face {
  font-family: "PicNic";
  src: url("../fonts/PicNic-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* MOF Theme — design tokens */
:root {
  --mof-dark: #280000;
  --mof-pink: #f44ea8;
  --mof-white: #ffffff;
  --mof-font-heading: "Bebas Neue", sans-serif;
  --mof-font-body: "Montserrat", sans-serif;
  --mof-font-script: "PicNic", cursive;
  --mof-container: 1200px;
  --mof-radius: 12px;
  --mof-radius-lg: 24px;
  --mof-hero-height: 570px;
  --mof-container-inset: max(1rem, calc((100% - min(100% - 2rem, var(--mof-container))) / 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#arvustused,
#hitid,
#info,
#programmid {
  scroll-margin-top: 1.5rem;
}

body {
  margin: 0;
  font-family: var(--mof-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mof-dark);
  background: var(--mof-white);
}

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

a {
  color: inherit;
}

.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;
}

h1,
h2,
h3,
h4,
.mof-heading {
  font-family: var(--mof-font-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.container {
  width: min(100% - 2rem, var(--mof-container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--mof-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--mof-pink);
  color: var(--mof-white);
  border-color: var(--mof-pink);
}

.btn--outline {
  background: transparent;
  color: var(--mof-white);
  border-color: var(--mof-white);
}

.btn--dark {
  background: var(--mof-dark);
  color: var(--mof-white);
  border-color: var(--mof-dark);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: 100px;
  background: var(--mof-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.site-header__logo img,
.site-header__logo .custom-logo,
.site-header__logo-img {
  display: block;
  max-height: 72px;
  width: auto;
  height: auto;
}

.primary-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: inline-block;
  color: var(--mof-white);
  text-decoration: none;
  font-family: var(--mof-font-body);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--mof-pink);
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-white);
}

.primary-nav .current-menu-item > a:hover,
.primary-nav .current_page_item > a:hover {
  color: var(--mof-white);
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-width: 74px;
  padding: 0.45rem 0.9rem 0.45rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--mof-white);
  color: var(--mof-dark);
  font-family: var(--mof-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.lang-switcher__toggle:hover,
.lang-switcher.is-open .lang-switcher__toggle {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.lang-switcher__chevron {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--mof-pink);
  border-bottom: 2px solid var(--mof-pink);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
  transform: rotate(225deg) translateY(1px);
}

.lang-switcher__list {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--mof-white);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  z-index: 200;
}

.lang-switcher__list[hidden] {
  display: none;
}

.lang-switcher__item a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--mof-dark);
  font-family: var(--mof-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.lang-switcher__item a:hover,
.lang-switcher__item.is-active a {
  color: var(--mof-pink);
}

/* Hero */
.hero {
  position: relative;
  height: var(--mof-hero-height);
  min-height: var(--mof-hero-height);
  text-align: center;
  color: var(--mof-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(40, 0, 0, 0.35) 0%,
    rgba(40, 0, 0, 0.55) 55%,
    rgba(35, 0, 19, 0.75) 100%
  );
  z-index: 1;
}

.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2.5rem 1rem 5.5rem;
  max-width: 960px;
}

.hero__location {
  margin: 0 0 0.35rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.hero__headline {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.12em 0.2em;
  line-height: 0.92;
}

.hero__script {
  font-family: var(--mof-font-script);
  font-size: 105px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0.01em;
  transform: translateY(0.06em);
}

.hero__display,
.hero__line2 {
  font-family: var(--mof-font-heading);
  font-size: 105px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__line2 {
  margin: -0.04em 0 0.35rem;
}

.hero__subtitle {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 2.1rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-dark);
  font-family: var(--mof-font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: var(--mof-dark);
}

.hero__features {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.75rem;
  margin: 0;
  padding: 0 1rem;
  list-style: none;
  width: min(100% - 2rem, var(--mof-container));
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mof-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.hero__feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero__script,
  .hero__display,
  .hero__line2 {
    font-size: clamp(3.25rem, 14vw, 105px);
  }

  .hero__location,
  .hero__subtitle {
    font-size: clamp(1rem, 3.5vw, 20px);
  }

  .hero__cta {
    font-size: clamp(1.75rem, 8vw, 45px);
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: var(--mof-hero-height);
  }

  .hero__features {
    position: static;
    transform: none;
    margin: 0 auto;
    padding: 1rem 1rem 1.25rem;
    gap: 1rem 1.5rem;
  }

  .hero__body {
    padding-bottom: 1.5rem;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--pink {
  background: var(--mof-pink);
  color: var(--mof-dark);
}

.section--dark {
  background: var(--mof-dark);
  color: var(--mof-white);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 2rem;
  text-align: center;
}

.section__title--left {
  text-align: left;
}

.section__title--pink {
  color: var(--mof-pink);
}

.section__title--on-dark {
  color: var(--mof-pink);
}

/* Reviews */
.reviews {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.reviews__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviews__inner {
  position: relative;
  z-index: 1;
}

.reviews__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.reviews__title {
  margin: 0 0 0.5rem;
  font-family: var(--mof-font-heading);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-white);
}

.reviews__subtitle {
  margin: 0;
  font-family: var(--mof-font-body);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mof-white);
}

.reviews__subtitle a,
.reviews__subtitle span {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.reviews__subtitle a:hover {
  color: var(--mof-white);
  opacity: 0.9;
}

.reviews__subtitle-sep {
  text-decoration: none;
}

.reviews__slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.25rem 0.5rem;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(100%, 520px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  padding: 2rem 2.25rem 1.75rem;
  background: rgba(40, 0, 0, 0.72);
  color: var(--mof-white);
  border-radius: 28px;
  backdrop-filter: blur(4px);
}

.review-card__name {
  margin: 0 0 0.85rem;
  font-family: var(--mof-font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--mof-pink);
}

.review-card__quote {
  margin: 0 0 1.25rem;
  max-width: 26rem;
  font-family: var(--mof-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.stars__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--mof-white);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.reviews__nav:hover {
  transform: scale(1.04);
}

.reviews__nav-icon {
  width: 22px;
  height: auto;
  display: block;
}

.reviews__nav-icon--prev {
  transform: rotate(180deg);
}

@media (min-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 899px) {
  .reviews__title {
    font-size: clamp(2.25rem, 10vw, 68px);
  }

  .reviews__subtitle {
    font-size: clamp(1.1rem, 4vw, 25px);
  }
}

@media (max-width: 640px) {
  .reviews__slider {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reviews__nav {
    display: none;
  }

  .review-card {
    flex: 0 0 100%;
  }
}

/* Legacy slider buttons (gallery etc.) */
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--mof-white);
  background: transparent;
  color: var(--mof-white);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

.section--pink .slider-btn {
  border-color: var(--mof-dark);
  color: var(--mof-dark);
}

/* Features slider */
.features {
  position: relative;
  overflow: hidden;
}

.features__slider {
  position: relative;
}

.features__track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.features__track::-webkit-scrollbar {
  display: none;
}

.features-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: clamp(420px, 52vw, 620px);
  overflow: hidden;
}

.features-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.features-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-slide__box {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: min(520px, 92vw);
  margin-left: 0;
  padding: 1.75rem 2rem 1.85rem;
  background: rgba(40, 0, 0, 0.8);
  color: var(--mof-white);
  border-radius: 0 32px 0 0;
}

.features-slide__title {
  margin: 0 0 0.65rem;
  font-family: var(--mof-font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-pink);
}

.features-slide__text {
  margin: 0;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.features__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--mof-white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.features__nav[data-slider-prev] {
  left: var(--mof-container-inset);
}

.features__nav[data-slider-next] {
  right: var(--mof-container-inset);
}

.features__nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.features__nav-icon {
  width: 22px;
  height: auto;
  display: block;
}

.features__nav-icon--prev {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .features-slide__title {
    font-size: clamp(2rem, 8vw, 54px);
  }

  .features-slide__text {
    font-size: clamp(1rem, 3.5vw, 20px);
  }

  .features-slide__box {
    margin-left: 0;
    padding: 1.25rem 1.35rem 1.35rem;
    border-radius: 0 20px 0 0;
  }
}

@media (max-width: 640px) {
  .features__nav {
    display: none;
  }

  .features-slide__box {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

/* Info section */
.info-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.info-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.info-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-section__inner {
  position: relative;
  z-index: 1;
}

.info-box {
  max-width: 840px;
  margin: 0 auto;
  background: var(--mof-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(40, 0, 0, 0.22);
}

.info-box__header {
  background: var(--mof-pink);
  color: var(--mof-white);
  padding: 1.1rem 1.5rem;
  text-align: center;
}

.info-box__title {
  margin: 0;
  font-family: var(--mof-font-heading);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.info-box__body {
  padding: 2rem 2.25rem 2.5rem;
  text-align: center;
}

.info-box__block + .info-box__block {
  margin-top: 1.65rem;
}

.info-box__block-title {
  margin: 0 0 0.65rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mof-pink);
}

.info-box__block-content {
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--mof-dark);
}

.info-box__block-content p {
  margin: 0 0 0.65rem;
}

.info-box__block-content p:last-child {
  margin-bottom: 0;
}

.info-box__block-content .info-box__lead,
.info-box__block-content strong {
  font-weight: 700;
  color: var(--mof-dark);
}

.info-box__block-content .info-box__lead {
  margin-top: 0.35rem;
  color: var(--mof-pink);
}

.info-box__content {
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--mof-dark);
  text-align: center;
}

.info-box__content > *:first-child {
  margin-top: 0;
}

.info-box__content > *:last-child {
  margin-bottom: 0;
}

.info-box__content p {
  margin: 0 0 0.65rem;
}

.info-box__content h2,
.info-box__content h3,
.info-box__content h4,
.info-box__content .wp-block-heading {
  margin: 1.65rem 0 0.65rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mof-pink);
  text-transform: none;
  letter-spacing: normal;
}

.info-box__content > h2:first-child,
.info-box__content > h3:first-child,
.info-box__content > .wp-block-heading:first-child {
  margin-top: 0;
}

.info-box__content strong {
  font-weight: 700;
}

.info-box__content a {
  color: var(--mof-pink);
}

@media (max-width: 768px) {
  .info-box__title {
    font-size: clamp(2.75rem, 12vw, 80px);
  }

  .info-box__block-title,
  .info-box__block-content,
  .info-box__content {
    font-size: clamp(1rem, 3.5vw, 20px);
  }

  .info-box__content h2,
  .info-box__content h3,
  .info-box__content h4,
  .info-box__content .wp-block-heading {
    font-size: clamp(1rem, 3.5vw, 20px);
  }

  .info-box__body {
    padding: 1.5rem 1.25rem 2rem;
  }
}

/* Map */
.map-section {
  width: 100%;
  line-height: 0;
}

.map-section__iframe {
  width: 100%;
  height: clamp(360px, 45vw, 520px);
  min-height: 360px;
  border: 0;
  display: block;
}

/* Booking CTA */
.booking-cta {
  position: relative;
  min-height: clamp(420px, 50vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--mof-white);
  overflow: hidden;
}

.booking-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booking-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(40, 0, 0, 0.35) 0%,
    rgba(40, 0, 0, 0.55) 100%
  );
}

.booking-cta__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 960px;
}

.booking-cta__title {
  margin: 0 0 1.75rem;
  font-family: var(--mof-font-heading);
  font-size: 95px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-white);
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 2.1rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-white);
  font-family: var(--mof-font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.booking-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: var(--mof-white);
}

@media (max-width: 900px) {
  .booking-cta__title {
    font-size: clamp(2.25rem, 10vw, 95px);
  }

  .booking-cta__btn {
    font-size: clamp(1.75rem, 8vw, 45px);
  }
}

/* Social */
.social-section {
  background: var(--mof-pink);
  color: var(--mof-dark);
  padding: 3.5rem 0 0;
  text-align: center;
}

.social-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.5rem;
}

.social-section__title {
  margin: 0 0 2rem;
  font-family: var(--mof-font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-dark);
}

.social-section__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
}

.social-section__icon-link {
  display: block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-section__icon-link:hover {
  transform: scale(1.06);
  opacity: 0.9;
}

.social-section__icons img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .social-section__title {
    font-size: clamp(2rem, 8vw, 54px);
  }

  .social-section__icons img {
    width: 48px;
    height: 48px;
  }
}

.social-grid {
  display: flex;
  width: 100%;
  margin: 0;
  gap: 0;
}

.social-grid__item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.social-grid__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
}

/* FAQ teaser */
.faq-teaser {
  background: var(--mof-dark);
  color: var(--mof-white);
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.faq-teaser__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin-inline: auto;
}

.faq-teaser__title {
  margin: 0 0 1rem;
  font-family: var(--mof-font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-pink);
}

.faq-teaser__text {
  margin: 0 0 1.75rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--mof-white);
}

.faq-teaser__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 2.1rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-white);
  font-family: var(--mof-font-heading);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.faq-teaser__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: var(--mof-white);
}

@media (max-width: 768px) {
  .faq-teaser__title,
  .faq-teaser__btn {
    font-size: clamp(1.75rem, 8vw, 45px);
  }

  .faq-teaser__text {
    font-size: clamp(1rem, 3.5vw, 20px);
  }
}

/* News */
.news-section {
  background: var(--mof-white);
  color: var(--mof-dark);
  padding: 3.5rem 0 4rem;
}

.news-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}

.news-section__title {
  margin: 0;
  font-family: var(--mof-font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-pink);
}

.news-section__view-all {
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--mof-dark);
  text-decoration: none;
  white-space: nowrap;
}

.news-section__view-all:hover {
  color: var(--mof-pink);
}

.news-grid {
  display: grid;
  gap: 2.5rem 3rem;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-card__date {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--mof-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--mof-dark);
}

.news-card__title {
  margin: 0 0 1.25rem;
  font-family: var(--mof-font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mof-dark);
}

.news-card__title a {
  text-decoration: none;
  color: inherit;
}

.news-card__title a:hover {
  color: var(--mof-pink);
}

.news-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-white);
  font-family: var(--mof-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.news-card__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: var(--mof-white);
}

@media (max-width: 900px) {
  .news-section__title,
  .news-card__title {
    font-size: clamp(1.75rem, 8vw, 54px);
  }

  .news-section__view-all {
    font-size: clamp(1rem, 3.5vw, 20px);
  }

  .news-card__btn {
    font-size: clamp(1.25rem, 5vw, 32px);
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--mof-pink);
  color: var(--mof-white);
  padding: 2.75rem 0;
  text-align: center;
}

.site-footer--compact {
  background: var(--mof-dark);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  margin: 0;
}

.site-footer__social a,
.site-footer__social-icon {
  display: block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social a:hover {
  transform: scale(1.06);
  opacity: 0.9;
}

.site-footer__social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer__legal a {
  color: var(--mof-white);
  text-decoration: none;
}

.site-footer__legal a::after {
  content: " >";
}

.site-footer__legal a:hover {
  opacity: 0.85;
  color: var(--mof-white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--mof-white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--mof-dark);
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }
}

/* Inner pages */
.page-content {
  padding: 3rem 0 4rem;
}

.page-content--blog {
  background: var(--mof-dark);
}

.page-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.page-content .alignwide {
  max-width: var(--mof-container);
  margin-inline: auto;
}

/* Blog listing */
.blog-listing {
  padding: 0.5rem 0 2.5rem;
}

.blog-listing__title {
  margin: 0 0 2rem;
  text-align: center;
  font-family: var(--mof-font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-white);
}

.blog-listing__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .blog-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .blog-listing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--mof-white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.blog-card__image-link {
  display: block;
  line-height: 0;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card__body {
  padding: 0.7rem 1rem 1rem;
  text-align: center;
}

.blog-card__date {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--mof-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--mof-dark);
}

.blog-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--mof-font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mof-dark);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--mof-pink);
}

.blog-card__excerpt {
  margin: 0;
  font-family: var(--mof-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--mof-dark);
}

.blog-listing__more {
  margin-top: 2rem;
  text-align: center;
}

.blog-listing__more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.8rem;
  border-radius: 999px;
  background: var(--mof-pink);
  color: var(--mof-white);
  font-family: var(--mof-font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-listing__more a:hover {
  filter: brightness(1.05);
}

/* FAQ page */
.page-content--faq {
  background: var(--mof-dark);
}

.page-content--programs {
  background: var(--mof-dark);
}

.faq-page {
  padding: 1rem 0 4rem;
}

.faq-page__inner {
  max-width: 1100px;
}

.faq-page__title {
  margin: 0 0 2rem;
  text-align: center;
  font-family: var(--mof-font-heading);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-white);
}

.faq-page__list {
  display: grid;
  gap: 1.5rem 3.25rem;
}

@media (min-width: 900px) {
  .faq-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-page__item {
  padding: 0 0.15rem 0.8rem;
  border-bottom: 2px solid var(--mof-pink);
}

.faq-page__question {
  margin: 0 0 0.7rem;
  font-family: var(--mof-font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mof-pink);
}

.faq-page__answer p {
  margin: 0 0 0.6rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--mof-white);
}

.faq-page__answer p:last-child {
  margin-bottom: 0;
}

.faq-page__answer strong {
  font-weight: 700;
}

.faq-page__answer ul,
.faq-page__answer ol {
  margin: 0 0 0.6rem;
  padding-left: 1.25rem;
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--mof-white);
  text-align: left;
}

@media (max-width: 900px) {
  .faq-page__title {
    font-size: clamp(2.2rem, 10vw, 76px);
  }

  .faq-page__question {
    font-size: clamp(1.6rem, 7vw, 44px);
  }

  .faq-page__answer p {
    font-size: clamp(1rem, 3.8vw, 20px);
  }
}

/* Programs page */
.programs-page {
  padding: 1rem 0 4rem;
}

.programs-page__inner {
  max-width: 1100px;
}

.programs-page__title {
  margin: 0 0 2rem;
  text-align: center;
  font-family: var(--mof-font-heading);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mof-white);
}

.programs-page__content {
  font-family: var(--mof-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--mof-white);
}

.programs-page__content p {
  margin: 0 0 1rem;
}

.programs-page__content h2,
.programs-page__content h3,
.programs-page__content h4,
.programs-page__content .wp-block-heading {
  margin: 2rem 0 0.75rem;
  font-family: var(--mof-font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mof-pink);
}

.programs-page__content h2:first-child,
.programs-page__content h3:first-child,
.programs-page__content .wp-block-heading:first-child {
  margin-top: 0;
}

.programs-page__content strong {
  font-weight: 700;
}

.programs-page__content ul,
.programs-page__content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.programs-page__content li {
  margin: 0.25rem 0;
}

@media (max-width: 900px) {
  .programs-page__title {
    font-size: clamp(2.2rem, 10vw, 76px);
  }

  .programs-page__content {
    font-size: clamp(1rem, 3.8vw, 20px);
  }

  .programs-page__content h2,
  .programs-page__content h3,
  .programs-page__content h4,
  .programs-page__content .wp-block-heading {
    font-size: clamp(1.6rem, 7vw, 44px);
  }
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10000;
  width: min(calc(100vw - 2rem), 420px);
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__panel {
  position: relative;
  width: 100%;
  padding: 2rem 2rem 1.75rem;
  background: var(--mof-white);
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(40, 0, 0, 0.18);
  pointer-events: auto;
}

.cookie-consent__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mof-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

.cookie-consent__title {
  margin: 0 2rem 0.75rem 0;
  font-family: var(--mof-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--mof-pink);
  text-transform: uppercase;
}

.cookie-consent__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--mof-dark);
}

.cookie-consent__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-consent__text a:hover {
  color: var(--mof-pink);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--mof-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mof-white);
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

.cookie-consent__btn--decline {
  background: #d3d3d3;
}

.cookie-consent__btn--accept {
  background: var(--mof-pink);
}

@media (max-width: 480px) {
  .cookie-consent {
    right: 1rem;
    bottom: 1rem;
    width: calc(100vw - 2rem);
  }

  .cookie-consent__panel {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 24px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}
