/*
Theme Name: WP Supertree Theme
Theme URI: http://localhost:8080
Author: Local Dev
Author URI: http://localhost:8080
Description: Tema WordPress refacuta fidel pe stilul public supertree.ro pentru development local.
Version: 0.3.5
Text Domain: wpsupertree-theme
*/

:root {
  color-scheme: light;
  /* Brand palette — see Supertree_Brandbook.pdf p.14 and skill/brand. */
  /* Primary */
  --wps-white: #fff;            /* Brandbook: White (bg color 1) */
  --wps-light-gray: #f2f2f2;    /* Brandbook: Light Gray (bg color 2) */
  --wps-purple-bold: #855ce8;   /* Brandbook: Bold Purple — predominant primary (color 3) */
  --wps-purple: #a678ff;        /* Brandbook: Purple (color 4) */
  /* Secondary accents */
  --wps-teal: #33cc99;          /* Brandbook: Energized Teal */
  --wps-green-deep: #2bab80;    /* Brandbook: Green */
  --wps-coral: #ff6666;         /* Brandbook: Vibrant Coral */
  --wps-red: #d64848;           /* Brandbook: Red */
  /* Neutrals */
  --wps-black: #000;            /* Brandbook: Black — text only, never as background */
  --wps-text: #272626;
  --wps-text-soft: #6c6a6a;
  --wps-line: #e8e8e8;

  /* Backwards-compatible aliases used across the existing theme.
     Do not remove without migrating every consumer. */
  --wps-soft: var(--wps-light-gray);
  --wps-purple-deep: var(--wps-purple-bold);
  --wps-purple-ink: #423687;    /* Local extension, not in brandbook. */
  --wps-green: var(--wps-teal);
  --wps-shell: min(106rem, calc(100% - 2rem));
  --wps-radius-pill: 10rem;
  --wps-radius-xl: 1.875rem;
  --wps-radius-lg: 1.25rem;
  --wps-radius-md: 1rem;
  --wps-shadow: 0 24px 80px rgba(35, 35, 35, 0.08);
  --wps-type-display-size: 5rem;
  --wps-type-display-line: 6rem;
  --wps-type-display-subtitle-size: 2rem;
  --wps-type-display-subtitle-line: normal;
  --wps-type-section-title-size: 3rem;
  --wps-type-section-title-line: 4rem;
  --wps-type-section-title-gap: 0.75rem;
  --wps-type-section-subtitle-size: 1.5rem;
  --wps-type-section-subtitle-line: normal;
  --wps-type-card-title-lg-size: 2rem;
  --wps-type-card-title-lg-line: 2.25rem;
  --wps-type-card-title-md-size: 1.75rem;
  --wps-type-card-title-md-line: 1.9rem;
  --wps-type-body-md-size: 1rem;
  --wps-type-body-md-line: 1.4;
  --wps-type-footer-size: 1rem;
}

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

html {
  font-size: 0.87vw;
  scroll-behavior: smooth;
}

@media (max-width: 1200px) {
  html {
    font-size: 1.2vw;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 1.9vw;
  }
}

@media (max-width: 767px) {
  :root {
    --wps-type-section-title-size: 1.875rem;
    --wps-type-section-title-line: 1.2;
    --wps-type-section-subtitle-size: 1rem;
    --wps-type-section-subtitle-line: 1.35;
  }

  html {
    font-size: 3.8vw;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--wps-text);
  background: var(--wps-white);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

body.sidebar-open,
body.popup-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

iframe {
  border: 0;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 0;
  border-radius: 1rem;
  background: var(--wps-white);
  color: var(--wps-text);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8a8a8a;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

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

.site-shell {
  width: var(--wps-shell);
  margin: 0 auto;
}

.navigation-target {
  position: relative;
  top: -6rem;
  display: block;
  visibility: hidden;
}

.button-style-arrow {
  --button-hover-color: var(--wps-purple);
  --button-hover-border: var(--wps-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: 1.05rem;
  background: var(--wps-purple);
  color: var(--wps-white);
  font-size: 1rem;
  font-weight: 500;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button-style-arrow:hover,
.button-style-arrow:focus-visible {
  transform: translateY(-1px);
  background: transparent;
  color: var(--button-hover-color);
  border-color: var(--button-hover-border);
  box-shadow: 0 16px 40px rgba(133, 92, 232, 0.18);
}

.button-style-arrow .arrow {
  font-size: 1rem;
  line-height: 1;
}

.button-style-arrow-white {
  --button-hover-color: var(--wps-white);
  --button-hover-border: var(--wps-white);
  background: var(--wps-white);
  color: var(--wps-black);
}

.button-style-arrow-outline {
  --button-hover-color: var(--wps-purple);
  --button-hover-border: var(--wps-purple);
  background: transparent;
  color: var(--wps-purple);
  box-shadow: inset 0 0 0 1px rgba(165, 120, 255, 0.22);
}

.button-style-arrow-green {
  --button-hover-color: var(--wps-black);
  --button-hover-border: var(--wps-black);
  background: var(--wps-green);
  color: var(--wps-black);
}

.button-style-arrow-disabled {
  background: #d8d8d8;
  color: #848484;
  box-shadow: none;
  cursor: not-allowed;
}

.button-style-arrow-disabled:hover,
.button-style-arrow-disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

.atom-title {
  max-width: 62rem;
  margin-bottom: 3rem;
}

.atom-title .overline {
  margin-bottom: 0.75rem;
  color: var(--wps-coral);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1rem;
  letter-spacing: 0.125rem;
}

.atom-title h2,
.atom-title h3 {
  margin: 0;
}

.atom-title h2 {
  margin-bottom: var(--wps-type-section-title-gap);
  font-size: var(--wps-type-section-title-size);
  font-weight: 300;
  line-height: var(--wps-type-section-title-line);
  letter-spacing: 0;
}

.atom-title h3 {
  margin-top: 0;
  color: var(--wps-text);
  font-size: var(--wps-type-section-subtitle-size);
  font-weight: 400;
  line-height: var(--wps-type-section-subtitle-line);
}

.atom-title h2:empty,
.atom-title h3:empty {
  display: none;
}

@media (max-width: 767px) {
  .atom-title h2 {
    font-size: var(--wps-type-section-title-size);
    line-height: var(--wps-type-section-title-line);
  }

  .atom-title h3 {
    font-size: var(--wps-type-section-subtitle-size);
    line-height: var(--wps-type-section-subtitle-line);
  }
}

.atom-title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.atom-title--inverse h2,
.atom-title--inverse h3 {
  color: var(--wps-white);
}

.site-header {
  position: fixed;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 40;
  pointer-events: none;
}

.site-header .site-shell {
  width: auto;
  margin: 0;
}

.site-menu-bar {
  display: inline-flex;
  max-width: none;
  padding: 0.625rem 1.5rem 0.625rem 1rem;
  border-radius: var(--wps-radius-pill);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0.063rem 0.063rem #f7f7f7;
  pointer-events: auto;
}

.site-menu-bar__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-menu-bar__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-menu-trigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.188rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.04);
}

.site-menu-trigger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--wps-black);
  border-radius: 999px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  min-height: 3.25rem;
}

.site-logo img {
  display: block;
  max-height: 2.3rem;
}

.site-desktop-nav {
  display: block;
}

.site-desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-desktop-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.188rem;
  color: #020202;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.063rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-desktop-nav__link:hover,
.site-desktop-nav__link:focus-visible {
  color: var(--wps-white);
  background-color: var(--wps-purple-deep);
}

.site-sidebar {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

body.sidebar-open .site-sidebar {
  opacity: 1;
  visibility: visible;
}

.site-sidebar__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 35, 0.48);
  backdrop-filter: blur(4px);
}

.site-sidebar__panel {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  bottom: 1.5rem;
  width: min(34rem, calc(100vw - 3rem));
  padding: 1.5rem;
  border-radius: 2rem;
  background: var(--wps-white);
  transform: translateX(-2rem);
  transition: transform 220ms ease;
}

body.sidebar-open .site-sidebar__panel {
  transform: translateX(0);
}

.site-sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3.75rem 1rem 1rem;
}

.site-sidebar__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--wps-soft);
}

.site-sidebar__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  background: var(--wps-black);
  border-radius: 999px;
}

.site-sidebar__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-sidebar__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-sidebar__label {
  margin-bottom: 1.5rem;
  color: var(--wps-coral);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-sidebar__menu {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-sidebar__menu li {
  margin: 0;
  padding: 0;
}

.site-sidebar__link {
  font-size: clamp(1.65rem, 5vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.site-sidebar__socials {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
  padding-top: 2rem;
}

.site-sidebar__socials a {
  font-size: 1rem;
  color: var(--wps-purple-ink);
}

.section-our-services,
.section-pricing,
.section-benefits,
.section-coworking,
.section-support,
.section-app,
.section-mentorship,
.section-gallery,
.section-about-us,
.section-contact,
.section-location,
.standard-page__hero {
  padding-bottom: 6.75rem;
}

.section-main {
  position: relative;
  box-sizing: border-box;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 4.75rem 2.5rem;
  background: var(--wps-purple);
  color: var(--wps-white);
  overflow: hidden;
}

.section-main__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 70rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-main__background-logo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.section-main__copy {
  position: relative;
  width: 100%;
  max-width: 70rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: none;
}

.section-main h1 {
  margin: 0;
  font-size: var(--wps-type-display-size);
  font-weight: 400;
  line-height: var(--wps-type-display-line);
  letter-spacing: 0;
}

.section-main p {
  max-width: 68rem;
  margin: 3rem 0 6rem;
  font-size: var(--wps-type-display-subtitle-size);
  line-height: 1.35;
}

.section-main .button-style-arrow {
  margin: 0;
}

@media (max-width: 767px) {
  .site-desktop-nav {
    display: none;
  }

  .site-menu-trigger {
    display: inline-flex;
  }

  .site-header {
    top: 0.625rem;
    left: 0.625rem;
    right: 0.625rem;
  }

  .site-header .site-shell {
    width: 100%;
  }

  .site-menu-bar {
    width: calc(100vw - 1.25rem);
    padding: 0.188rem 1.25rem 0.188rem 0.5rem;
  }

  .site-menu-bar__content {
    position: relative;
    width: 100%;
    min-height: 3.25rem;
  }

  .site-menu-bar__brand {
    width: 100%;
  }

  .site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    min-height: 100%;
  }

  .section-main {
    min-height: 100svh;
    height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 1rem 2.5rem;
  }

  .section-main__content {
    width: 100%;
    height: 100%;
  }

  .section-main__copy {
    transform: none;
  }

  .section-main h1 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.4;
  }

  .section-main p {
    margin: 1.125rem 0 2.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
  }

  .section-main .button-style-arrow {
    margin-top: 2.375rem;
  }

  .section-main__background-logo {
    width: min(42rem, 90vw);
    transform: translate(-50%, -42%);
  }
}

.section-our-services,
.section-pricing,
.section-benefits,
.section-coworking,
.section-support,
.section-app,
.section-mentorship,
.section-about-us,
.section-contact,
.section-location {
  background: var(--wps-white);
}

.section-our-services {
  padding-top: 0;
}

.section-our-services .site-shell {
  margin-top: 6rem;
}

.section-our-services .atom-title {
  max-width: 87rem;
  margin: 0 auto 4.75rem;
  text-align: center;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 87rem;
  margin: 0 auto;
}

.our-services-box {
  position: relative;
  min-height: 25rem;
  padding: 2.5rem 2.188rem 1.875rem;
  border-radius: 1.25rem;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.section-our-services .box-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.section-our-services .box-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  text-align: center;
  color: var(--wps-white);
}

.section-our-services .box-title {
  margin-bottom: 1.875rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 3.063rem;
  letter-spacing: 0;
}

.section-our-services .box-text {
  flex-grow: 1;
  max-width: 19rem;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.section-our-services .box-content .button-style-arrow {
  margin-top: auto;
  align-self: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--wps-soft);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--wps-white);
}

.section-pricing .site-shell,
.section-benefits .site-shell,
.section-coworking .site-shell,
.section-support .site-shell,
.section-mentorship .site-shell,
.section-contact .site-shell,
.site-footer .site-shell {
  width: min(80rem, calc(100% - 2rem));
}

.section-pricing .atom-title,
.section-benefits .atom-title,
.section-coworking .atom-title,
.section-support .atom-title,
.section-app .atom-title,
.section-contact .atom-title,
.section-location .atom-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-pricing .atom-title {
  max-width: 62rem;
  margin-bottom: 5.75rem;
}

.section-benefits .atom-title {
  max-width: 62rem;
  margin-bottom: 7rem;
}

.section-coworking .atom-title {
  max-width: 62rem;
  margin-bottom: 5.5rem;
}

.section-support .atom-title {
  max-width: 62rem;
  margin-bottom: 4.313rem;
}

.section-about-us .atom-title {
  max-width: 49rem;
  margin: 0 auto;
  text-align: center;
}

.section-location .atom-title {
  max-width: 49rem;
  margin-bottom: 2.5rem;
}

.section-pricing .atom-title h2,
.section-benefits .atom-title h2,
.section-coworking .atom-title h2,
.section-support .atom-title h2,
.section-app .atom-title h2,
.section-mentorship .atom-title h2,
.section-about-us .atom-title h2,
.section-contact .atom-title h2,
.section-location .atom-title h2 {
  color: var(--wps-black);
  margin-bottom: var(--wps-type-section-title-gap);
  font-size: var(--wps-type-section-title-size);
  font-weight: 700;
  line-height: var(--wps-type-section-title-line);
  letter-spacing: 0;
}

.section-pricing .atom-title h3,
.section-benefits .atom-title h3,
.section-coworking .atom-title h3,
.section-support .atom-title h3,
.section-app .atom-title h3,
.section-mentorship .atom-title h3,
.section-about-us .atom-title h3,
.section-contact .atom-title h3,
.section-location .atom-title h3 {
  color: var(--wps-black);
  font-size: var(--wps-type-section-subtitle-size);
  line-height: var(--wps-type-section-subtitle-line);
}

.pricing-card:has(.pricing-badge) {
  margin-top: 2.4rem;
  overflow: visible;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -2px;
  top: -2.4rem;
  width: calc(100% + 4px);
  margin: 0;
  padding: 0.438rem 1.5rem;
  border: 2px solid var(--wps-purple);
  border-radius: 1.25rem 1.25rem 0 0;
  background: var(--wps-purple);
  color: var(--wps-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125rem;
  text-transform: uppercase;
}

.pricing-header {
  padding: 1.125rem 1.75rem;
  background: var(--wps-white);
}

.pricing-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 8rem;
  width: auto;
  margin-bottom: 0.438rem;
}

.pricing-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pricing-title-text {
  color: var(--wps-purple);
  font-size: var(--wps-type-card-title-lg-size);
  font-weight: 800;
  line-height: var(--wps-type-card-title-lg-line);
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.pricing-subtitle-text {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--wps-black);
  font-size: var(--wps-type-body-md-size);
  line-height: var(--wps-type-body-md-line);
}

.pricing-price {
  margin-top: 0;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--wps-black);
}

.price-period {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: var(--wps-type-body-md-size);
  line-height: 1.375rem;
  color: var(--wps-black);
}

.pricing-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.625rem 1.75rem;
  border-radius: 1.25rem;
  background: var(--wps-soft);
}

.pricing-body-title {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25rem;
}

.pricing-features {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  font-size: var(--wps-type-body-md-size);
  line-height: 1.75rem;
}

.pricing-feature strong {
  font-weight: 800;
}

.pricing-button-wrapper {
  margin-top: auto;
  padding-top: 0;
  text-align: center;
}

.pricing-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-height: auto;
  padding: 0;
  text-align: center;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 8rem;
  height: 8rem;
}

.benefit-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.benefit-title {
  color: var(--wps-purple-deep);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.75rem;
}

.accordion-section {
  display: grid;
  gap: 0;
  margin-bottom: 4.75rem;
}

.accordion-item {
  margin-bottom: 3rem;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 0 0.625rem;
  border: 0;
  border-bottom: 1px solid var(--wps-black);
  margin-bottom: 1.5rem;
  background: transparent;
  text-align: left;
}

.accordion-title {
  color: var(--wps-purple);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.accordion-icon {
  position: relative;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
}

.accordion-plus,
.accordion-minus {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wps-black);
  font-size: 3rem;
  font-weight: 300;
  transition: opacity 180ms ease;
}

.accordion-item.expanded .accordion-plus {
  opacity: 0;
}

.accordion-item:not(.expanded) .accordion-minus {
  opacity: 0;
}

.accordion-panel {
  padding: 0;
}

.accordion-text {
  max-width: none;
  color: var(--wps-black);
  font-size: 1.25rem;
  line-height: 1.5;
}

.checkboxes-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-top: 0;
  margin-bottom: 3.5rem;
}

.checkbox-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.checkbox-icon {
  flex: 0 0 1.25rem;
  margin-top: 0.25rem;
}

.checkbox-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.checkbox-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.button-section {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

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

.support-card {
  min-height: 15rem;
  padding: 2rem;
  border-radius: 1.875rem;
  background: var(--wps-soft);
}

.support-card__title {
  color: var(--wps-purple);
  font-size: var(--wps-type-card-title-md-size);
  font-weight: 800;
  line-height: var(--wps-type-card-title-md-line);
  letter-spacing: 0;
}

.support-card__text {
  margin-top: 2.625rem;
  font-size: 1rem;
  line-height: 1.4;
}

.section-app .button-section {
  justify-content: center;
}

.section-app .atom-title {
  max-width: 49rem;
  margin-bottom: 2.5rem;
}

.mentorship-box {
  padding: 3.75rem 5.75rem;
  border-radius: 1.875rem;
  background: var(--wps-soft);
}

.mentorship-box__header {
  margin-bottom: 6.563rem;
  text-align: center;
}

.mentorship-box__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 8vw, 11rem);
}

.section-mentorship .atom-title {
  max-width: 60rem;
  margin: 0 auto;
}

.section-mentorship .atom-title h2,
.mentorship-card__title {
  color: var(--wps-green);
}

.mentorship-box__left p {
  margin: 0 0 1.5rem;
  color: var(--wps-black);
  font-size: 1.5rem;
  line-height: 1.28;
}

.mentorship-box__left p:last-child {
  margin-bottom: 0;
}

.mentorship-box__left strong {
  font-size: inherit;
  font-weight: 800;
}

.mentorship-box__right {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.mentorship-card {
  display: grid;
  grid-template-columns: minmax(0, 11.5rem) 1fr;
  gap: 3rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.mentorship-card__title {
  font-size: var(--wps-type-card-title-md-size);
  font-weight: 800;
  line-height: var(--wps-type-card-title-md-line);
}

.mentorship-card__text {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.section-gallery {
  padding-bottom: 5rem;
}

.gallery-shell {
  position: relative;
}

.gallery-stage {
  position: relative;
}

.gallery-track {
  position: relative;
}

.gallery-slide {
  margin: 0 0 0.75rem;
}

.gallery-slide__image {
  position: relative;
  height: 37.5rem;
  overflow: hidden;
  background: var(--wps-black);
}

.gallery-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--wps-white);
  box-shadow: var(--wps-shadow);
}

.gallery-arrow--prev {
  left: 2rem;
}

.gallery-arrow--next {
  right: 2rem;
}

.gallery-arrow span {
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(6rem, 1fr);
  gap: 0.2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.7;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-box {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.75rem 5.75rem;
  border-radius: 1.875rem;
  background: var(--wps-soft);
}

.contact-header {
  text-align: center;
  margin-bottom: 4.375rem;
}

.contact-header .atom-title {
  max-width: none;
  margin-bottom: 0;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact-form__column {
  display: grid;
  gap: 1.625rem;
}

.contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.875rem;
}

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  max-width: none;
  font-size: 1rem;
  line-height: 1.3;
}

.contact-checkbox .wpcf7-form-control-wrap,
.contact-checkbox .wpcf7-form-control,
.contact-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-checkbox input {
  width: 0.938rem;
  height: 0.938rem;
  margin: 0.125rem 0 0;
  padding: 0;
}

.contact-checkbox a {
  text-decoration: underline;
}

.contact-box .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.875rem 1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
}

.contact-box .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.contact-box .wpcf7-spinner {
  margin: 0 0 0 0.75rem;
}

.contact-box .input-wrapper p {
  margin: 0;
}

.contact-box .input-wrapper input,
.contact-box .input-wrapper textarea {
  height: 4rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--wps-white);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
  color: var(--wps-black);
}

.contact-box .input-wrapper textarea {
  min-height: 6.25rem;
  max-height: 6.25rem;
  resize: none;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.contact-popup__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28rem, calc(100vw - 2rem));
  padding: 2rem;
  border-radius: 2rem;
  background: var(--wps-white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.contact-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--wps-soft);
  font-size: 1.5rem;
}

.contact-popup__panel h3 {
  margin: 1rem 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
  grid-template-areas: "map sidebar";
  gap: 1rem;
  width: var(--wps-shell);
  margin: 0 auto;
}

.location-cover {
  min-height: 36rem;
  border-radius: var(--wps-radius-xl);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.location-cover--compact {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

.location-cover__gradient {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
}

.section-location .location-cover .atom-title h2,
.section-location .location-cover .atom-title h3 {
  color: var(--wps-white);
}

.location-map {
  grid-area: map;
  min-height: 36rem;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 36rem;
}

.location-sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 36rem;
  padding: 1.5rem;
  border-radius: var(--wps-radius-xl);
  background: var(--wps-soft);
}

.location-sidebar__groups {
  display: grid;
  gap: 0.9rem;
}

.location-group {
  border-radius: 1.35rem;
  background: var(--wps-white);
  overflow: hidden;
}

.location-group__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.location-group__trigger {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.location-group__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.location-group__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.location-group__icon::before,
.location-group__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: var(--wps-purple-ink);
  transform: translate(-50%, -50%);
}

.location-group__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.location-group.is-open .location-group__icon::after {
  opacity: 0;
}

.location-group__tabs {
  display: inline-flex;
  gap: 0.45rem;
}

.location-tab {
  min-width: 3.3rem;
  padding: 0.45rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: var(--wps-soft);
  color: var(--wps-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.location-tab.is-active {
  background: var(--wps-purple);
  color: var(--wps-white);
}

.location-group__panel {
  padding: 0 1rem 1rem;
}

.location-routes {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-route {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: var(--wps-soft);
}

.location-route__name {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.location-route__meta {
  color: var(--wps-text-soft);
  font-size: 0.88rem;
}

.location-sidebar__footer {
  margin-top: auto;
}

.location-sidebar__footer .location-cover__gradient {
  padding: 1.4rem;
}

.location-sidebar__footer .atom-title {
  margin-bottom: 0;
}

.location-sidebar__footer .atom-title h2 {
  font-size: 1.4rem;
}

.location-sidebar__footer .atom-title h3 {
  font-size: 0.92rem;
  line-height: 1.35;
}

.location-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: calc(100% - 64px);
  margin: 0 auto 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 1rem;
  background: var(--wps-soft);
  color: var(--wps-purple-ink);
  font-weight: 700;
}

.location-toggle__hide {
  display: none;
}

.location-sidebar-open .location-toggle__show {
  display: none;
}

.location-sidebar-open .location-toggle__hide {
  display: inline;
}

.site-footer {
  padding: 4rem 0 1.25rem;
  background: var(--wps-purple-deep);
  color: var(--wps-white);
}

.site-footer__content {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.85fr 0.8fr 0.7fr;
  gap: 1.5rem;
  padding: 0;
}

.site-footer__column--logo {
  display: flex;
  align-items: flex-start;
}

.site-footer__logo img {
  width: auto;
  max-width: 7rem;
  max-height: 7rem;
}

.site-footer__info-item + .site-footer__info-item {
  margin-top: 2.5rem;
}

.site-footer__info-title {
  margin-bottom: 0.5rem;
  font-size: var(--wps-type-footer-size);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-footer__info-text {
  font-size: var(--wps-type-footer-size);
  font-weight: 200;
  line-height: 1.4;
  opacity: 0.9;
}

.site-footer__links {
  display: grid;
  gap: 1rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  font-size: var(--wps-type-footer-size);
  font-weight: 200;
  opacity: 0.9;
  transition: transform 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  transform: translateX(5px);
}

.site-footer__links--badges {
  gap: 0.75rem;
}

.site-footer__link--badge:hover,
.site-footer__link--badge:focus-visible {
  transform: none;
}

.site-footer__badge {
  width: 100%;
  max-width: 11rem;
}

.standard-page,
.standard-post,
.standard-archive {
  padding: 0 0 5rem;
  background: var(--wps-soft);
}

.standard-page__hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 5rem;
  background: var(--wps-purple);
  color: var(--wps-white);
}

.standard-page__hero .site-shell {
  position: relative;
  z-index: 1;
  min-height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standard-page__hero .atom-title {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

.standard-page__hero .atom-title h2 {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.standard-page__hero .atom-title h3 {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.standard-page__background-logo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.1;
  pointer-events: none;
}

.standard-page__hero .atom-title h3 {
  color: rgba(255, 255, 255, 0.88);
}

.standard-page__content {
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  background: transparent;
}

/* Wide variant for archive layouts (blog index, category archives).
   Aligned to the homepage cards grid width (.section-our-services grid),
   not the outer .site-shell which is wider. Keeps individual posts/pages
   at the readable 960px default. */
.standard-page__content--wide {
  width: var(--wps-shell);
  max-width: 87rem;
}

.standard-page__content > *:first-child {
  margin-top: 0;
}

.post-thumbnail {
  margin: 0 0 2rem;
  border-radius: var(--wps-radius-xl);
  overflow: hidden;
  line-height: 0;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.standard-page__content > *:last-child {
  margin-bottom: 0;
}

.standard-page__content h2,
.standard-page__content h3,
.standard-page__content h4 {
  color: var(--wps-purple);
  line-height: 1.15;
}

.standard-page__content h2 {
  font-size: 2rem;
}

.standard-page__content h3 {
  font-size: 1.75rem;
}

.standard-page__content h4 {
  font-size: 1.5rem;
}

.standard-page__content p,
.standard-page__content li {
  font-size: 1rem;
  line-height: 1.7;
}

.standard-page__content ul {
  padding-left: 1.25rem;
}

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

/* Category filter chips (server-side, links to /blog/category/<slug>/). */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin: 3rem 0;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--wps-line);
  border-radius: var(--wps-radius-pill);
  background: var(--wps-white);
  color: var(--wps-text);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-filter:hover,
.blog-filter:focus-visible {
  border-color: var(--wps-purple);
  color: var(--wps-purple-bold);
}

.blog-filter.is-active {
  background: var(--wps-purple-bold);
  border-color: var(--wps-purple-bold);
  color: var(--wps-white);
}

@media (max-width: 720px) {
  /* A different mobile filter pattern will be added later. */
  .blog-filters { display: none; }
}

.post-card {
  border-radius: var(--wps-radius-xl);
  background: var(--wps-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.post-card__image--placeholder {
  background: var(--wps-purple-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__image--placeholder img {
  width: 40%;
  height: auto;
  object-fit: contain;
  transform: none !important;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wps-purple-bold);
  margin-bottom: 0.5rem;
}

.post-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card h2 a:hover {
  color: var(--wps-purple-bold);
}

.post-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wps-light-gray);
}

.post-card__dot {
  color: var(--wps-purple);
}

/* ── Featured post card ───────────────────────────────── */

.post-card-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--wps-white);
  border-radius: var(--wps-radius-xl);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.post-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.post-card-featured__image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: block;
  background: var(--wps-black);
}

.post-card-featured__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.post-card-featured:hover .post-card-featured__image img {
  transform: scale(1.04);
}


.post-card-featured__image.post-card__image--placeholder {
  background: var(--wps-purple-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-featured__image.post-card__image--placeholder img {
  position: static;
  width: 35%;
  height: auto;
  object-fit: contain;
  transform: none !important;
}

.post-card-featured__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--wps-purple-bold);
  color: var(--wps-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
}

.post-card-featured__body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card-featured__body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.post-card-featured__body h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card-featured__body h2 a:hover {
  color: var(--wps-purple-bold);
}

.post-card-featured__body > p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.post-card-featured__body .post-card__meta {
  margin-bottom: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.post-card-featured__body .button-style-arrow {
  align-self: flex-start;
}

.events-page {
  display: grid;
  gap: 3rem;
}

.events-page p {
  margin: 0;
}

.events-intro {
  max-width: 52rem;
}

.events-intro p + p {
  margin-top: 1rem;
}

.events-section {
  display: grid;
  gap: 1.5rem;
}

.events-section__heading {
  margin: 0;
  color: var(--wps-purple);
  font-size: 2rem;
  line-height: 1.1;
}

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

.events-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--wps-white);
  box-shadow: 0 20px 50px rgba(35, 35, 35, 0.06);
}

.events-card h3 {
  margin: 0 0 0.75rem;
  color: var(--wps-purple);
  font-size: 1.35rem;
  line-height: 1.15;
}

.events-card p {
  color: var(--wps-text);
}

.events-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.events-media-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--wps-white);
  box-shadow: 0 20px 50px rgba(35, 35, 35, 0.06);
}

.events-media-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.events-proof {
  display: grid;
  gap: 1rem;
}

.events-proof-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(165, 120, 255, 0.08);
}

.events-proof-card h3 {
  margin: 0 0 0.75rem;
  color: var(--wps-purple);
  font-size: 1.35rem;
  line-height: 1.15;
}

.events-proof-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.events-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: var(--wps-white);
  box-shadow: 0 20px 50px rgba(35, 35, 35, 0.06);
}

.events-logo-card img {
  width: 100%;
  max-width: 10rem;
  max-height: 3.5rem;
  object-fit: contain;
}

.events-logo-card--art img {
  max-width: 7rem;
  max-height: 7rem;
}

.events-cta {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(165, 120, 255, 0.12), rgba(133, 92, 232, 0.2));
}

.events-cta h2 {
  margin: 0;
}

.events-cta p {
  max-width: 48rem;
}

.events-cta .button-style-arrow {
  width: max-content;
}

@media (max-width: 960px) {
  .events-grid,
  .events-showcase,
  .events-logo-grid {
    grid-template-columns: 1fr;
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 1200px) {
  .pricing-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-layout {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  }

  .location-sidebar {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

@media (max-width: 960px) {
  :root {
    --wps-shell: calc(100% - 32px);
  }

  .section-our-services,
  .section-pricing,
  .section-benefits,
  .section-coworking,
  .section-support,
  .section-app,
  .section-mentorship,
  .section-gallery,
  .section-about-us,
  .section-contact,
  .section-location,
  .standard-page__hero {
    padding-bottom: 5rem;
  }

  .our-services-grid,
  .checkboxes-section,
  .contact-form__grid,
  .mentorship-box {
    grid-template-columns: 1fr;
  }

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

  .post-card-featured {
    display: flex;
    flex-direction: column;
  }

  .post-card-featured__image {
    min-height: unset;
    aspect-ratio: 16 / 9;
    background: transparent;
  }

  .post-card-featured__image img {
    object-fit: cover;
  }

  .post-card-featured__body {
    padding: 1.5rem;
    justify-content: flex-start;
  }

  .post-card-featured__body h2 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 0.65rem;
  }

  .post-card-featured__body > p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .post-card-featured__body .post-card__meta {
    margin-bottom: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wps-light-gray);
  }

  .post-card-featured__body .button-style-arrow {
    display: none;
  }

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

  .standard-page__hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .standard-page__hero .site-shell {
    min-height: 10rem;
  }

  .section-pricing .atom-title,
  .section-benefits .atom-title,
  .section-coworking .atom-title,
  .section-support .atom-title,
  .section-contact .atom-title,
  .section-location .atom-title {
    margin-bottom: 4rem;
  }

  .section-our-services .atom-title {
    margin-bottom: 3.125rem;
  }

  .section-our-services .site-shell {
    margin-top: 2rem;
  }

  .our-services-grid {
    max-width: none;
    gap: 4.375rem;
  }

  .our-services-box {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .section-our-services .box-title {
    margin-bottom: 0.85rem;
    font-size: 1.9rem;
    line-height: 1.16;
  }

  .section-our-services .box-text {
    font-size: 1.07rem;
    line-height: 1.4;
  }

  .pricing-subtitle-text,
  .pricing-feature,
  .support-card__text,
  .mentorship-card__text,
  .contact-checkbox,
  .contact-box .input-wrapper input,
  .contact-box .input-wrapper textarea {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .pricing-body-title,
  .checkbox-title {
    font-size: 0.9rem;
    line-height: 1.18;
  }

  .support-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:has(.pricing-badge) {
    margin-top: 2.5rem;
  }

  .pricing-header,
  .pricing-body,
  .contact-box {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }

  .benefits-grid {
    gap: 4.375rem;
  }

  .benefit-card {
    gap: 1rem;
  }

  .benefit-icon {
    height: 6rem;
    flex-basis: 6rem;
  }

  .accordion-section {
    margin-bottom: 3.75rem;
  }

  .accordion-title {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .accordion-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-basis: 2.5rem;
  }

  .accordion-plus,
  .accordion-minus {
    font-size: 2.5rem;
  }

  .accordion-text {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .checkboxes-section {
    gap: 1.625rem;
    margin-bottom: 2.5rem;
  }

  .support-card {
    min-height: auto;
  }

  .support-card__title {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .support-card__text {
    margin-top: 1.25rem;
  }

  .mentorship-box {
    padding: 1.875rem 1.25rem 3rem;
  }

  .mentorship-box__header {
    margin-bottom: 3.125rem;
  }

  .mentorship-box__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mentorship-box__left p {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .mentorship-box__right {
    gap: 3rem;
  }

  .mentorship-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mentorship-card__title {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .mentorship-card__text {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .contact-header {
    margin-bottom: 3.125rem;
  }

  .gallery-slide__image {
    height: 28rem;
  }

  .gallery-thumbs {
    grid-auto-columns: 8rem;
  }

  .gallery-thumb img {
    height: 4.375rem;
  }

  .location-layout {
    display: block;
    width: 100%;
  }

  .location-toggle {
    display: flex;
    width: var(--wps-shell);
    margin: 0 auto 1rem;
  }

  .location-map {
    width: var(--wps-shell);
    margin: 0 auto 1rem;
    min-height: 26rem;
  }

  .location-map iframe {
    min-height: 26rem;
  }

  .location-sidebar {
    width: var(--wps-shell);
    margin: 0 auto;
    display: none;
  }

  .location-cover--compact {
    min-height: 18rem;
  }

  .location-sidebar-open .location-sidebar {
    display: flex;
  }

  .contact-form__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

@media (max-width: 720px) {
  /* Restore vertical spacing lost when the chips bar is hidden
     (see `.blog-filters { display: none }` higher up in this file). */
  .post-card-featured { margin-bottom: 3rem; }

  .standard-page__content h2 {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .standard-page__content h3 {
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .standard-page__content h4 {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .standard-page__content p,
  .standard-page__content li,
  .post-card p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .post-card h2 {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .post-card-featured__body h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0 0 0.65rem;
  }

  .events-section__heading,
  .events-cta h2 {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .events-card h3,
  .events-proof-card h3 {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .site-sidebar__link {
    font-size: clamp(1.2rem, 4.2vw, 1.9rem);
  }

  .site-sidebar__socials a,
  .site-sidebar__label {
    font-size: 0.88rem;
  }

  .site-sidebar__panel {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .our-services-box,
  .location-cover,
  .location-map iframe {
    min-height: 22rem;
  }

  .contact-box,
  .mentorship-box,
  .standard-page__content {
    width: calc(100% - 2rem);
    padding: 1.25rem 0;
  }

  .pricing-header,
  .pricing-body {
    padding: 1.25rem;
  }

  .pricing-icon {
    height: 6rem;
    margin-bottom: 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .benefit-title {
    font-size: 0.98rem;
    line-height: 1.24;
  }

  .gallery-arrow {
    width: 1.875rem;
    height: 1.875rem;
  }

  .gallery-arrow--prev {
    left: 0.625rem;
  }

  .gallery-arrow--next {
    right: 0.625rem;
  }

  .gallery-slide__image {
    height: 22rem;
  }

  .gallery-thumbs {
    grid-auto-columns: 6.5rem;
    gap: 0.25rem;
  }

  .gallery-thumb img {
    height: 3.5rem;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0 2rem;
  }
}
