:root {
  --Primary-Light: #f4cac04d;
  --White-Black-Text-Color-Primary: #0a0446;
  --color-primary: #0a0446;
  --color-secondary: #353064;
  --color-subtle: #8b8aa1;
  --color-peach: #f4cac0;
  --color-peach-light: rgba(244, 202, 192, 0.3);
  --color-accent: #e4b8ae;
  --color-stroke: rgba(42, 42, 42, 0.08);
  --color-hero-bg: #bfb9ad;
  --color-white: #fff;
  --color-black: #2a2a2a;
  --font-serif: "Marcellus", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --container: min(1440px, calc(100% - 48px));
  --pad-x: clamp(20px, 5vw, 240px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-secondary);
  background: var(--color-white);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: var(--container);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(0px, calc((100vw - 1440px) / 2 + 24px));
  padding-right: max(0px, calc((100vw - 1440px) / 2 + 24px));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn--primary {
  background: var(--color-peach);
  color: var(--color-primary);
}
.btn--outline {
  background: var(--color-white);
  border: 1px solid #786a5c;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 1.5px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  left: max(var(--pad-x), 1rem);
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Section rhythm — optional spacer between major homepage blocks. */
.separator {
  padding-bottom: clamp(72px, 12vw, 144px);
}

/* Header + hero (layout / type / responsive — aligned with front-hero.html + masha-hero.css) */
.masha-lp-top {
  --masha-header-h: 88px;
  --masha-hero-title-max: 760px;
  --masha-hero-title-size: clamp(28px, 8.2vw, 40px);
  --masha-hero-title-leading: 1.03;
  --masha-hero-title-tracking: 0.5px;
  --masha-header-logo-w: 94.39261627197266px;
  --masha-header-logo-h: 60.9732551574707px;
}
.masha-lp-top .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--masha-header-h);
  padding: 0 var(--pad-x);
}
.masha-lp-top .site-header__inner {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--masha-header-h);
}
.masha-lp-top .site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.masha-lp-top .site-header__logo-img {
  display: block;
  width: var(--masha-header-logo-w);
  height: var(--masha-header-logo-h);
  max-width: none;
  object-fit: contain;
  object-position: left top;
}

.masha-lp-top .site-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--color-secondary);
}
.masha-lp-top .site-header__menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}
.masha-lp-top .primary-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--masha-header-h);
  bottom: 0;
  z-index: 30;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  padding: 1.5rem 1.25rem 2rem;
  background: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}
.masha-lp-top .primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.masha-lp-top .primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.masha-lp-top .primary-nav__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
}
.masha-lp-top .primary-nav__link:hover { opacity: 0.75; }
.masha-lp-top .primary-nav__item--appointment { margin-top: 0.5rem; }
.masha-lp-top .primary-nav__appointment {
  width: 100%;
  max-width: 172px;
}
.masha-lp-top .site-header__appointment {
  flex-shrink: 0;
  display: none;
  box-sizing: border-box;
  width: 172px;
  min-height: 46px;
  padding: 13px 28px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
}

.masha-lp-top .hero {
  position: relative;
  width: 100%;
  min-height: min(100vh, 1080px);
  overflow: hidden;
}
.masha-lp-top .hero__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.masha-lp-top .hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: var(--color-hero-bg);
  background-repeat: no-repeat;
}
/* Mobile-only layer (photo from homepage ACF; avoids loading desktop asset on small screens). */
.masha-lp-top .hero__media--mobile {
  display: block;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 14%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(42, 42, 42, 0.25) 0%, rgba(42, 42, 42, 0) 42%),
    linear-gradient(180deg, rgba(42, 42, 42, 0) 55%, rgba(42, 42, 42, 0.35) 100%),
    var(--hero-photo, url("../images/hero-section-background.png"));
  background-size: 100% 100%, 100% 100%, 100% 100%, cover;
  background-position: center top, center top, center bottom, center top;
}
.masha-lp-top .hero__media--desktop {
  display: none;
  background-image: var(--hero-photo, url("../images/hero-section-background.png"));
  /* background-size: 100% 100%, cover;
  background-position: center top, center top, 35% 45%; */

  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

/* No ACF background: drop full-viewport min-height and fix mobile grid vs flex. */
.masha-lp-top .hero.hero--no-bg {
  min-height: 0;
}
@supports (height: 100svh) {
  .masha-lp-top .hero.hero--no-bg {
    min-height: 0;
  }
}

/* Mobile: image fills row 1; CTA sits in row 2 below the photo (see Figma mobile hero). */

@supports (height: 100svh) {
  .masha-lp-top .hero {
    min-height: min(100svh, 1080px);
  }
}

.masha-lp-top .hero__copy {
  max-width: 100%;
  width: 100%;
}

.masha-lp-top .hero__title {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 95px;
}

.masha-lp-top .hero__title-line {
  display: inline;
  margin: 0;
  padding: 0;
}
.masha-lp-top .hero__signature {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  vertical-align: middle;
  white-space: nowrap;
}
.masha-lp-top .hero__signature-img {
  display: block;
  position: relative;
  width: min(154px, 38vw);
  height: auto;
  object-position: left center;
  margin-top: 0.5rem;
  margin-left: clamp(-2rem, -4vw, -0.25rem);
}

/* Hero CTA — Body Medium/Semibold (Figma button). */
.masha-lp-top .hero__cta-bar.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 28px;
  gap: 10px;
  box-sizing: border-box;
  background: #f4cac0;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1.5px;
  color: #2a2a2a;
}

.masha-lp-top .hero__inner {
  padding-left: 240px;
  padding-right: 240px;
}

/* Mobile: CTA row below hero photo. */

/* Quote / stats */
.section-quote {
  background: var(--color-white);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}
.section-quote__inner {
  max-width: 1448px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-quote__body {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.section-quote__text {
  position: relative;
  width: 100%;
  max-width: fit-content;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--color-primary);
  /* Used to align closing mark with last line (supertext / cap-height), not box bottom. */
  --quote-lh: 56px;
}
.section-quote__text p {
  margin: 0 0 24px;
  font-weight: 400;
  font-style: normal;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  color: inherit;
}
.section-quote__text p:last-child {
  margin-bottom: 0;
}
.section-quote__attr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--color-subtle);
  margin: 0;
  margin-top: 48px;
}
/* Scoped to homepage quote section only (Approach reuses .section-quote__qm with its own layout). */
.section-quote .section-quote__qm {
  position: absolute;
  width: clamp(17px, 4.8vw, 22px);
  height: auto;
  aspect-ratio: 22 / 21;
  display: block;
  pointer-events: none;
}
/* Anchored to .section-quote__text: opening high on first line, closing high on last line (not subscript at box bottom). */
.section-quote .section-quote__qm--tl {
  top: 0;
  left: 0;
  transform: translate(calc(-100% - clamp(8px, 2vw, 12px)), -0.12em);
}
.section-quote .section-quote__qm--br {
  top: calc(100% - var(--quote-lh));
  right: 0;
  bottom: auto;
  transform: translate(calc(100% + clamp(8px, 2vw, 12px)), -0.1em);
}

/* About — responsive grid; large screens: sticky image + flowing copy */
.section-about {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: stretch;
  gap: clamp(28px, 4vw, 72px);
  /* max-width: 1920px; */
  margin: 0 auto;
  box-sizing: border-box;
}

/* Image column — intrinsic aspect ratio, scales with column; no crop */
.about-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.about-visual__ph {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  letter-spacing: 1.5px;
  color: rgba(42, 42, 42, 0.08);
  position: absolute;
  left: clamp(-4px, -0.8vw, -8px);
  top: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 1;
  pointer-events: none;
}
.about-visual__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-visual__img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  /* Stay fully visible: shrink to column width and/or viewport height, preserve aspect ratio */
  max-height: min(92dvh, 92vh);
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  margin-inline: auto;
}

.about-visual__sig {
  position: absolute;
  right: 8%;
  bottom: 6%;
  width: min(45%, 291px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}
.about-visual__sig img {
  display: block;
  width: 100%;
  height: auto;
}
/* Text column — min-width 0 so long copy wraps; optional measure on very wide viewports */
.section-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.section-about h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin: 0;
}
.section-about .body {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-wrap: break-word;
}
.section-about .body p {
  margin: 0;
}
/* About CTA — Figma Button + Button Text (140×46, Body Medium/SemiBold) */
.section-about .section-about__cta {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
  gap: 10px;
  width: 140px;
  height: 46px;
  min-height: 46px;
  padding: 13px 28px;
  box-sizing: border-box;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  white-space: nowrap;
}

/* About: no ACF image — center text column */
.section-about.section-about--text-only {
  justify-items: center;
}
.section-about.section-about--text-only .section-about__content {
  align-items: center;
  text-align: center;
  max-width: 722px;
}
.section-about.section-about--text-only .section-about__content .body {
  align-items: center;
}
.section-about.section-about--text-only .section-about__content .body p {
  max-width: 100%;
}
.section-about.section-about--text-only .section-about__cta {
  align-self: center;
}

/* About: ACF image + custom body — center image in its column */
.section-about.section-about--has-image.section-about--image-centered .about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-about.section-about--has-image.section-about--image-centered .about-visual__frame {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* About: image field only (no heading/body/CTA) */
.section-about.section-about--image-only {
  justify-items: center;
}
.section-about.section-about--image-only .about-visual {
  margin-inline: auto;
}

/* Explore */
.section-explore {
  background: var(--color-peach-light);
  padding-left: clamp(20px, 12.5vw, 240px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Section heading — Figma: column, center, gap 40px, max 1440px, z-index 1 */
.section-explore__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  padding: 0;
  gap: 40px;
  width: min(100%, 1440px);
  flex: none;
  flex-grow: 0;
  z-index: 1;
  margin: 72px auto 72px;
  box-sizing: border-box;
}
.section-explore__heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  flex-grow: 0;
  margin: 0;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--color-secondary);
  padding-right: clamp(20px, 12.5vw, 240px);
}
.explore-block {
  margin-bottom: 72px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
/* Frame 14783 — row, gap 10px, 48px row height; title flex-grow 1 */
/* When the main H2 is omitted, give the first track row top spacing like the heading block */
.section-explore:not(:has(.section-explore__heading)) > .explore-block:first-child .explore-block__head {
  margin-top: 72px;
}
.explore-block__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 48px;
  margin-bottom: 48px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  flex-wrap: wrap;
  padding: 0;
  box-sizing: border-box;
}
.explore-block__head h3 {
  flex: 1 1 auto;
  min-width: 0;
  order: 0;
  margin: 0;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 48px;
  color: var(--color-secondary);
}
/* Arrow group — 98×44, gap 10px */
.explore-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: none;
  flex-grow: 0;
  order: 1;
  width: 98px;
  height: 44px;
}
.explore-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  flex-grow: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 50%;
}
.explore-arrows button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.explore-arrows button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.explore-arrows button img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* Frame 14783 — carousel row: gap 16px, max 1716×326 */
.explore-scroll {
  --explore-scroll-gap: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: var(--explore-scroll-gap);
  width: 100%;
  max-width: 1716px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: none;
  align-self: stretch;
  box-sizing: border-box;
  padding: 0;
}
.explore-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
/* Card frame — column, gap 20px, 417×326 */
.explore-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 417px);
  max-width: 417px;
  min-height: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  box-sizing: border-box;
}
.explore-card__img {
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 417 / 280;
  max-height: 280px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  overflow: hidden;
  flex: none;
  align-self: stretch;
}
.explore-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.explore-card p {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 3.8vw, 18px);
  line-height: 26px;
  letter-spacing: 1px;
  margin: 0;
  color: var(--color-secondary);
  align-self: stretch;
  flex: none;
}

/* Mission / Vision — Frame 1597881473 + nested Figma frames */
.section-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 56px;
  box-sizing: border-box;
}
.mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: clamp(32px, 5vw, 56px);
}
/* Frame 1597881507 — two columns */
.mission-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 0;
  flex: none;
  align-self: stretch;
}
.mission-grid--single .mission-col {
  flex: 1 1 100%;
  max-width: 100%;
}
.mission-grid--single .mission-col--left {
  border-right: none;
}
.mission-col {
  box-sizing: border-box;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  gap: 64px;
}
.mission-col--left {
  align-items: center;
  border-right: 1px solid rgba(42, 42, 42, 0.08);
}
.mission-col--right {
  align-items: flex-start;
}
.mission-row-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 0;
  box-sizing: border-box;
  flex: none;
  align-self: stretch;
}
.mission-col--left .mission-row-top {
  justify-content: flex-end;
  padding: 0 clamp(16px, 6vw, 80px) 24px 0;
}
.mission-col--right .mission-row-top {
  justify-content: flex-start;
  padding: 0 0 24px clamp(16px, 6vw, 80px);
}
/* Icon halo — rgba(244, 202, 192, 0.3) */
  
.mission-icon img {
  width: auto;
  height: 74px;
  object-fit: contain;
  display: block;
}
.mission-col--right .mission-icon {
  border-radius: 10px;
}
.mission-col--right .mission-icon img {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.mission-col h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  margin: 0;
  color: #0a0446;
  flex: none;
}
.mission-col--left h3 {
  text-align: right;
}
.mission-col--right h3 {
  text-align: left;
}
.mission-body {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-secondary);
  margin: 0;
  width: 100%;
  flex: 1 1 auto;
  box-sizing: border-box;
}
.mission-col--left .mission-body {
  text-align: right;
  align-self: stretch;
  margin-left: auto;
  margin-right: 0;
  padding: 0 clamp(16px, 6vw, 80px) 0 0;
}
.mission-col--right .mission-body {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  padding: 0 0 0 clamp(16px, 6vw, 80px);
}
/* Frame 14783 — footer */
.mission-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  width: 100%;
  max-width: 1448px;
  text-align: center;
}
.mission-footer img {
  display: block;
  width: 113px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.mission-footer p {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #8b8aa1;
  margin: 0;
  width: 100%;
}

/* Memberships */
.section-members {
  padding-top: 16px;
  padding-bottom: 0px;
}
.section-members h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #0a0446;
  margin: 0 0 clamp(32px, 10vw, 150px) 0;
}

.logo-rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
}
.logo-cell {
  width: 234px;
  height: 124px;
  background: var(--color-white);
  display: grid;
  place-items: center;
  padding: 16px;
}
.logo-cell img { max-height: 70px; width: auto; max-width: 100%; object-fit: contain; }
.logo-cell--wide { width: min(383px, 100%); }

/* Approach */
.section-approach {
  margin: 0 auto;
}
.section-approach > h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 72px;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
}
.approach-cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 60px;
}
.approach-cols--single .approach-col {
  flex: 1 1 100%;
  max-width: 100%;
}
.approach-col {
  flex: 1 1 0;
  min-width: 0;
}

.approach-vdivider {
  flex: 0 0 auto;
  width: 1px;
  background: var(--color-stroke);
  min-height: 400px;
  align-self: stretch;
}
.approach-col h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 38px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 24px;
}
/* Body Extra Large / medium weight — WYSIWYG wrappers (flex omitted: breaks multi-paragraph flow). */
.approach-col .approach-col__rich,
.approach-col .approach-col__rich--list {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
}
.approach-col .long {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 32px;
}
.approach-col ol {
  margin: 0 0 32px;
  padding-left: 1.25rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
}
.approach-col ol li { margin-bottom: 0.5rem; }
/* WYSIWYG output from ACF (paragraphs / lists without .long class on each node). */
.approach-col .approach-col__rich p {
  font: inherit;
  margin: 0 0 32px;
}
.approach-col .approach-col__rich ol,
.approach-col .approach-col__rich ul {
  margin: 0 0 32px;
  padding-left: 1.25rem;
  font: inherit;
}
.approach-col .approach-col__rich li {
  margin-bottom: 0.5rem;
}
.approach-col .approach-col__rich a {
  color: var(--color-primary);
  text-decoration: underline;
}
.approach-col .approach-col__rich a:hover {
  opacity: 0.85;
}
/* Approach column CTAs — Body Medium / Semibold, dark gray label (overrides global .btn--primary navy). */
.section-approach .approach-col .btn.btn--primary {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 28px;
  gap: 10px;
  background: var(--color-peach);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: var(--color-black);
  text-align: center;
}
/* Full-bleed band above approach quote (primary light + Marcellus body). */
.approach-quote-banner {
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background: var(--Primary-Light);
}
.approach-quote-banner__inner {
  margin-left: auto;
  margin-right: auto;
}
.approach-quote-banner p {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--White-Black-Text-Color-Primary);
  margin: 0;
}
.approach-quote-banner p + p {
  margin-top: 1em;
}

.approach-quote {
  text-align: center;
  position: relative;
  padding: 0 24px 0;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
/* Heading 2 — quote section title (Marcellus). */
.approach-quote h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 48px;
  text-align: center;
}
/* Blockquote — main quote copy (Marcellus, primary navy). */
.approach-quote blockquote,
.approach-quote__text blockquote {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin: 0;
  border: none;
  padding: 0;
}
/* Wrapper: shrink-wrap like .section-quote__text so marks sit beside the copy, not the full section width. */
.approach-quote__text {
  position: relative;
  display: block;
  width: 100%;
  max-width: fit-content;
  margin: 0 auto 32px;
  box-sizing: border-box;
  text-align: center;
  --quote-lh: 46px;
}
.approach-quote__qm {
  position: absolute;
  width: clamp(17px, 4.8vw, 22px);
  height: auto;
  aspect-ratio: 22 / 21;
  display: block;
  pointer-events: none;
}
.approach-quote__qm--tl {
  top: 0;
  left: 0;
  transform: none;
}
.approach-quote__qm--br {
  top: calc(100% - var(--quote-lh));
  right: 0;
  bottom: auto;
  transform: none;
}
/* Match .mission-footer — logo + attribution under approach quote. */
.approach-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  width: 100%;
  max-width: 1448px;
  text-align: center;
}
.approach-footer img {
  display: block;
  width: 113px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.approach-footer cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #8b8aa1;
  margin: 0;
  width: 100%;
}

/* Mind list */
.section-mind {
  padding: 16px 0 0 16px;
}
.section-mind__titles {
  text-align: center;
  margin-bottom: 72px;
}
.section-mind__titles h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 16px;
}
.section-mind__titles p {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin: 0;
  width: 100%;
}
.mind-row {
  border-bottom: 1px solid var(--color-peach-light);
  padding: 24px 0;
}
.mind-row__grid {
  display: grid;
  grid-template-columns: 452px 1fr;
  gap: 24px;
  align-items: self-end;
}

.mind-num {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 74px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
}
.mind-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  background-image: url("../images/number_background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.mind-title {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 38px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 8px;
}
.mind-tag {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: var(--color-subtle);
  margin: 0 0 12px;
}
.mind-body {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-secondary);
  margin: 0;
  padding-bottom: 28px;
}
.mind-body p {
  font: inherit;
  margin: 0 0 1em;
}
.mind-body p:last-child {
  margin-bottom: 0;
}

/* Newsletter — <picture>/<img> sets height (intrinsic ratio); desktop overlays form + scrim */
.section-newsletter {
  --nl-form-panel: #fdf2f0;
  position: relative;
  background: #200502;
  overflow: hidden;
}
.section-newsletter__media {
  display: block;
  margin: 0;
  line-height: 0;
}
.section-newsletter__img {
  display: block;
  width: 100%;
  height: auto;
}
/* Mobile: image stacks above form panel (in document order). */
.section-newsletter__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  background: var(--nl-form-panel);
  padding: 28px var(--pad-x) 40px;
  text-align: left;
}
.section-newsletter__form-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}
.section-newsletter__form-wrap h2 {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--color-primary);
  margin: 0 0 8px;
  text-align: left;
}
.section-newsletter__form-wrap .name {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--color-primary);
  margin: 0 0 24px;
  text-align: left;
}
.section-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
/* ConvertKit overrides live in assets/css/convertkit.css */
.section-newsletter input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(42, 42, 42, 0.15);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
  background: var(--color-white);
  box-sizing: border-box;
}
.section-newsletter input[type="email"]::placeholder {
  color: var(--color-subtle);
}
.section-newsletter .section-newsletter__submit {
  flex: 0 0 auto;
  align-self: flex-start;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.section-newsletter--no-media .section-newsletter__inner {
  background: var(--nl-form-panel);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Instagram */
.section-insta { overflow: hidden; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.insta-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-cta {
  background-color: var(--color-peach);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}
.insta-cta__watermark {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.insta-cta__watermark img { width: 80%; max-width: 360px; }
/* Homepage Instagram CTA below feed — Figma banner (1920×395). Background art at intrinsic SVG size 477×319 (not full-bleed). */
.insta-cta--below-feed {
  --insta-cta-bg-image: none;
  --insta-cta-bg-w: 477px;
  --insta-cta-bg-h: 319px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 395px;
  padding: clamp(36px, 6vw, 56px) clamp(20px, 4vw, 48px);
  opacity: 1;
  background-image: var(--insta-cta-bg-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: var(--insta-cta-bg-w) var(--insta-cta-bg-h);
}
.insta-cta--below-feed .insta-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.insta-cta--below-feed h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  line-height: 53px;
  letter-spacing: 1.5px;
  text-align: center;
  text-wrap: balance;
  color: #353064;
  margin: 0;
  max-width: min(100%, 480px);
  margin-inline: auto;
}
.insta-cta--below-feed .btn.btn--outline {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 28px;
  gap: 10px;
  width: auto;
  min-width: 212px;
  min-height: 46px;
  height: 46px;
  flex: none;
  flex-grow: 0;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #2a2a2a;
  background: #fff;
  border: 1px solid #786a5c;
  border-radius: 50px;
}
.insta-cta .ig-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}

/* Contact */
.section-contact {
  background: var(--color-peach-light);
  position: relative;
}
.contact-panel {
  max-width: 1356px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 8px;
}
.contact-panel h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--color-primary);
  margin: 0;
}
.contact-panel .sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-subtle);
  margin: 0 0 32px 0;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.section-contact .field label {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-subtle);
  margin-bottom: 10px;
}
.section-contact .field input,
.section-contact .field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(139,138,161,0.6);
  background: transparent;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--color-subtle);
}
.section-contact .field input::placeholder,
.section-contact .field textarea::placeholder {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--color-subtle);
  opacity: 1;
}
.section-contact .field textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid rgba(139,138,161,0.6);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  resize: vertical;
  background-color: inherit;
}
.form-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.wpcf7-form .form-grid-2 .field p {
  margin: 0;
}

.form-row-bottom .badges p {
  margin: 0px;
  display: contents;
}

.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  padding: 3px 10px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #999;
  background: transparent;
  color: var(--color-subtle);
}
.badge.is-on {
  border-color: var(--color-accent);
  color: var(--color-primary);
}
.section-contact .form-note {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--color-secondary);
  margin-top: 24px;
}
.section-contact .form-note strong {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
}
.section-contact .form-actions .btn.btn--primary {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 24px;
}
.form-actions { text-align: center; margin-top: 24px; }

.section-contact .form-actions .wpcf7-spinner {
  margin: 0;
  vertical-align: sub;
}

/* FAQ */
.section-faq {
  margin: 0 auto;
}
.section-faq .head {
  text-align: center;
  margin-bottom: 48px;
}
.section-faq .head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.5px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-primary);
  margin: 0 0 16px;
}
.section-faq .head p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-secondary);
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  padding: 16px 0;
}
.faq-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}
.faq-item__top::-webkit-details-marker { display: none; }
details.faq-item > .faq-item__top { list-style: none; }
.faq-item h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.5px;
  vertical-align: middle;
  color: var(--color-primary);
  margin: 0;
}
.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  font-family: 'dashicons';
}
.faq-item__body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 1.5px;
  vertical-align: middle;
  color: var(--color-secondary);
  margin-top: 16px;
  max-width: calc(100% - 40px);
}
.faq-item__body p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
details.faq-item:not([open]) summary .icon-minus { display: none; }
details.faq-item:not([open]) summary .icon-plus { display: block; }
details.faq-item[open] summary .icon-minus { display: block; }
details.faq-item[open] summary .icon-plus { display: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--color-peach-light);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto 64px;
}
.footer-brand img { height: 85px; width: auto; }
.footer-contact h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 16px;
}
.footer-contact p {
  font-family: var(--font-sans);
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--color-subtle);
  margin: 0 0 4px;
}
.footer-contact a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--color-subtle);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-tagline {
  max-width: 479px;
}
.footer-tagline > p {
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--color-secondary);
  margin: 0 0 24px;
}
/* Footer newsletter — Frame 20 / placeholder row (Figma) */
.footer-newsletter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
  max-width: 479px;
}
.footer-newsletter__field {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #FFFFFF4D;
}
.footer-newsletter input[type="email"] {
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  background: transparent;
  outline: none;
}
.footer-newsletter input[type="email"]::placeholder {
  color: var(--color-subtle);
  opacity: 1;
}
.footer-newsletter__submit.btn {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  padding: 6px 14px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 999px;
  white-space: nowrap;
}
.footer-newsletter__submit.btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-stroke);
}
.footer-bar__copyright,
.footer-bar__privacy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1.5px;
  color: var(--color-subtle);
}
.footer-bar__privacy {
  color: var(--color-secondary);
}
.footer-bar__privacy:hover {
  color: var(--color-primary);
}
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social__link:hover {
  opacity: 0.8;
}
.footer-social__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}
.footer-social__link img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 1488px) {

  .container { padding-left: 24px; padding-right: 24px; width: 100%; }

}

@media (max-width: 1023px) {

  .masha-lp-top .site-header__logo {
    --masha-header-logo-w: min(94.39px, 24vw);
    --masha-header-logo-h: min(60.97px, 15.5vw);
  }


  .masha-lp-top .hero.hero--no-bg {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .masha-lp-top .hero.hero--no-bg .hero__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: calc(var(--masha-header-h) + clamp(0.75rem, 3vw, 1.5rem)) var(--pad-x) clamp(1.25rem, 4vh, 2rem);
    box-sizing: border-box;
  }
  .masha-lp-top .hero.hero--no-bg .hero__copy {
    position: relative;
    grid-column: unset;
    grid-row: unset;
    align-self: stretch;
    justify-self: stretch;
    padding: 0 0 clamp(1rem, 3vh, 1.5rem);
  }
  .masha-lp-top .hero.hero--no-bg .hero__title {
    color: var(--color-secondary);
    text-shadow: none;
  }
  .masha-lp-top .hero.hero--no-bg .hero__signature-img {
    filter: none;
  }
  .masha-lp-top .hero.hero--no-bg .hero__cta-bar {
    position: relative;
    grid-column: unset;
    grid-row: unset;
    border-radius: 50px;
  }


  .masha-lp-top .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: min(100vh, 1080px);
  }
  .masha-lp-top .hero__visual {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    width: 100%;
  }
  .masha-lp-top .hero__inner {
    display: contents;
    min-height: 0;
    padding: 0;
    margin: 0;
    max-width: none;
  }
  .masha-lp-top .hero__copy {
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    align-self: end;
    justify-self: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }


  .masha-lp-top .hero__title {
    max-width: 100%;
    font-size: 36px;
    line-height: 36.81px;
    letter-spacing: 0.75px;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 28px rgba(42, 42, 42, 0.4);
  }
  .masha-lp-top .hero__title p {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
  }


  .masha-lp-top .hero__signature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0.5rem 0 0;
    padding: 0;
    box-sizing: border-box;
    white-space: normal;
  }
  .masha-lp-top .hero__signature-img {
    margin: 0;
    width: min(200px, 58vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 2px 12px rgba(42, 42, 42, 0.35));
  }


  .masha-lp-top .hero__cta-bar.btn {
    grid-column: 1;
    grid-row: 2;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0px;
  }

}

@media (max-width: 1024px) {

  .mind-title{
    display: inline-flex;
    padding-left: 12px;
    font-size: 27px;
  }
  .mind-row__grid{
    align-items: start;
  }

  .mind-num {
    line-height: unset;
  }
}
@media (min-width: 1024px) {

  .masha-lp-top .site-header__menu-toggle { display: none; }
  .masha-lp-top .site-header__appointment { display: inline-flex; }
  .masha-lp-top .primary-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    z-index: auto;
    transition: none;
  }
  .masha-lp-top .primary-nav.is-open {
    transform: translate(-50%, -50%);
  }
  .masha-lp-top .primary-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .masha-lp-top .primary-nav__item--appointment { display: none; }
  .masha-lp-top .site-header__inner {
    gap: clamp(1rem, 4vw, 4rem);
  }


  .masha-lp-top .hero__media--mobile {
    display: none;
  }
  .masha-lp-top .hero__media--desktop {
    display: block;
  }


  .masha-lp-top .hero.hero--no-bg .hero__inner {
    min-height: 0;
    padding-bottom: clamp(2rem, 5vh, 4rem);
  }
  .masha-lp-top .hero.hero--no-bg .hero__title {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
  }


  @supports (height: 100svh) {
    .masha-lp-top .hero.hero--no-bg .hero__inner {
      min-height: 0;
    }
  }


  @supports (height: 100svh) {
    .masha-lp-top .hero__inner {
      min-height: min(100svh, 1080px);
    }
  }


  .masha-lp-top .hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: min(100vh, 1080px);
    margin: 0 auto;
    padding-top: var(--masha-header-h);
    padding-bottom: clamp(2.5rem, 6vh, 5rem);
  }


  .masha-lp-top .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: var(--masha-hero-title-max);
  }


  .masha-lp-top .hero__title {
    max-width: var(--masha-hero-title-max);
    margin: 0 0 clamp(1.25rem, 3vw, 2rem);
    font-size: var(--masha-hero-title-size);
    line-height: var(--masha-hero-title-leading);
    letter-spacing: var(--masha-hero-title-tracking);
    color: var(--color-secondary);
    margin-bottom: 95px;
  }


  .masha-lp-top .hero__signature-img {
    position: absolute;
    width: 154px;
    max-width: none;
    transform-origin: 50% 55%;
    margin-top: 60px;
    margin-left: -50px;
  }


  .masha-lp-top .hero__cta-bar.btn {
    width: fit-content;
    max-width: 100%;
    margin: 0;
  }


  .masha-lp-top {
    --masha-hero-title-size: clamp(42px, 5.5vw, 64px);
    --masha-hero-title-leading: 1.03;
    --masha-hero-title-tracking: 1.5px;
  }

}

@media (max-width: 768px) {

  .masha-lp-top .hero__title {
    margin-bottom: 0;
  }

  .section-quote__text {
    font-size: clamp(28px, 6vw, 46px);
    line-height: 1.22;
    --quote-lh: 1.22em;
  }
  .section-quote__text p {
    margin: 0;
  }
  .section-quote__text p:not(:last-child) {
    margin-bottom: 1rem;
  }


  .section-about {
    gap: 28px;
  }

  .section-about .section-about__content {
    gap: 24px;
    align-items: stretch;
  }

  .section-about .body {
    font-size: 17px;
    line-height: 28px;
    gap: 1rem;
  }

  .section-about .about-visual__sig {
    width: min(42%, 220px);
    right: 6%;
    bottom: 5%;
  }

  .section-about .section-about__cta {
    align-self: center;
  }


  .explore-arrows {
    display: none;
  }
  .section-explore__heading {
    gap: 24px;
    margin: 36px auto 36px;
  }
  .explore-block__head h3 {
    font-size: clamp(21px, 5.5vw, 28px);
    line-height: 1.3;
  }
  .explore-card p {
    font-size: clamp(15px, 4.1vw, 17px);
    line-height: 1.45;
    letter-spacing: 0.5px;
  }

  .explore-block {
    margin-bottom: 36px;
  }
  .explore-block__head {
    margin-top: 24px;
    margin-bottom: 24px;
  }


  .mission-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .mission-col--left {
    border-right: none;
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
    align-items: stretch;
    padding-bottom: 40px;
    gap: 32px;
  }
  .mission-col--right {
    padding-top: 32px;
    gap: 32px;
  }
  .mission-col--left .mission-row-top {
    justify-content: flex-start;
    flex-direction: row;
    padding: 0 0 24px 0;
  }
  .mission-col--right .mission-row-top {
    padding: 0 0 24px 0;
  }
  .mission-col--left h3,
  .mission-col--left .mission-body {
    text-align: left;
  }
  .mission-col--left .mission-body,
  .mission-col--right .mission-body {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .mission-body {
    font-size: 17px;
    line-height: 28px;
  }

  .approach-quote-banner p {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.28;
  }


  .approach-quote__text {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.28;
    --quote-lh: 1.28em;
  }
  .approach-quote blockquote {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.28;
  }
  .approach-quote__text blockquote {
    font-size: inherit;
    line-height: inherit;
  }


  .form-grid-2 { grid-template-columns: 1fr; }


  .form-row-bottom { grid-template-columns: 1fr; }

}

@media (min-width: 768px) {

  .masha-lp-top {
    --masha-hero-title-size: clamp(32px, 7.5vw, 52px);
    --masha-hero-title-tracking: 1px;
  }
  .masha-lp-top .hero__media--desktop {
    display: block;
  }


  .section-newsletter__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(280px, min(560px, 42vw));
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px) var(--pad-x);
    background: transparent;
    text-align: left;
    pointer-events: none;
  }
  .section-newsletter__form-wrap {
    grid-column: 2;
    justify-self: end;
    width: 100%;
    max-width: 560px;
    margin: 0;
    pointer-events: auto;
    text-align: left;
  }
  .section-newsletter__form-wrap h2 {
    color: var(--color-white);
  }
  .section-newsletter__form-wrap .name {
    color: var(--color-white);
    margin-bottom: 28px;
  }
  /* Stack field then button (matches desktop comp — not a horizontal row). */
  .section-newsletter input[type="email"] {
    max-width: 375px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
  }
  .section-newsletter .section-newsletter__submit {
    align-self: flex-start;
  }
  .section-newsletter--no-media {
    min-height: min(420px, 70vh);
  }
  .section-newsletter--no-media .section-newsletter__inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 520px);
    align-items: center;
    background: transparent;
    pointer-events: none;
  }
  .section-newsletter--no-media .section-newsletter__form-wrap {
    pointer-events: auto;
  }
  .section-newsletter--no-media .section-newsletter__form-wrap h2,
  .section-newsletter--no-media .section-newsletter__form-wrap .name {
    color: var(--color-white);
  }
}

@media (min-width: 1440px) {

  .masha-lp-top {
    --masha-hero-title-size: 72px;
    --masha-hero-title-leading: 74px;
  }
  .masha-lp-top .hero__title {
    margin-bottom: 95px;
  }

}

@media (max-width: 380px) {

  .masha-lp-top .hero__signature-img {
    width: min(180px, 48vw);
  }

}

@media (prefers-reduced-motion: reduce) {

  .masha-lp-top .primary-nav { transition: none; }

}

@media (min-width: 1025px) {

  /* Laptop / small desktop: narrower image track so copy gets more room */
  .section-about.section-about--has-image:not(.section-about--image-only) {
    grid-template-columns: minmax(0, clamp(12rem, 26vw, 26rem)) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 72px);
    align-items: start;
  }

  @media (min-width: 1440px) {
    .section-about.section-about--has-image:not(.section-about--image-only) {
      grid-template-columns: minmax(0, clamp(14rem, 30vw, 32rem)) minmax(0, 1fr);
    }
  }

  .section-about.section-about--has-image:not(.section-about--image-only) .about-visual {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: clamp(1rem, 2.5vw, 5.5rem);
    justify-self: start;
    align-self: start;
    width: 100%;
    max-width: 100%;
  }

  .section-about.section-about--has-image:not(.section-about--image-only) .section-about__content {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    width: 100%;
    max-width: none;
  }


  .section-about.section-about--has-image:not(.section-about--image-only) .about-visual__frame {
    margin-inline: 0;
  }

}

@media (max-width: 1024px) {

  .section-about {
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
  }

  .section-about .about-visual {
    position: relative;
    top: auto;
    justify-self: center;
    width: 100%;
    max-width: min(100%, 42rem);
  }

  .section-about .about-visual__frame {
    margin-left: 0;
    max-height: none;
  }

  .section-about .about-visual__ph {
    left: 0;
    font-size: clamp(40px, 11vw, 80px);
  }

  .section-about .about-visual__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .section-about .section-about__content {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    gap: 28px;
  }


  .mission-col {
    gap: 48px;
  }
  .mission-col h3 {
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1.2;
  }


  .approach-cols {
    flex-direction: column;
  }
  .approach-vdivider { display: none; }

}

@media (max-width: 480px) {

  .mission-row-top {
    gap: unset;
  }
  .section-about {
    gap: 24px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .section-about .about-visual {
    max-width: 100%;
  }

  .section-about .body {
    font-size: 16px;
    line-height: 26px;
  }

  .section-about .about-visual__ph {
    font-size: clamp(32px, 18vw, 56px);
    top: 4px;
  }

  .section-about .about-visual__sig {
    width: min(48%, 180px);
  }

  .mission-col {
    padding: 16px 0;
    gap: 24px;
  }
  .mission-icon {
    padding: 20px;
    border-radius: 16px;
  }
  .mission-col--right .mission-icon {
    padding: 0;
    padding-right: 20px;
  }
  .mission-col h3 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .mission-body {
    font-size: 16px;
    line-height: 26px;
  }
  .mission-footer p,
  .approach-footer cite {
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.35;
  }

}

@media (min-width: 1600px) {

  /* .section-about.section-about--has-image:not(.section-about--image-only) .section-about__content {
    max-width: min(72rem, 100%);
  } */

}

@media (min-width: 480px) {

  .explore-card {
    width: clamp(300px, 42vw, 417px);
  }

}

@media (min-width: 900px) {

  .explore-card {
    width: 417px;
    flex: 0 0 417px;
  }

}

@media (max-width: 900px) {


  .mind-row__grid { grid-template-columns: 1fr; }


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

}

@media (max-width: 600px) {

  .insta-cta--below-feed {
    min-height: clamp(240px, 55vw, 395px);
    padding: clamp(28px, 8vw, 40px) 16px;
    /* Keep 477:319 ratio when narrower than art width */
    background-size: min(477px, calc(100vw - 32px)) auto;
    background-position: center center;
  }
  .insta-cta--below-feed .insta-cta__inner {
    gap: clamp(14px, 4vw, 20px);
  }
  .insta-cta--below-feed h2 {
    font-size: clamp(28px, 9vw, 52px);
    line-height: 1.08;
    max-width: min(100%, 22ch);
  }
  .insta-cta--below-feed .btn.btn--outline {
    min-width: min(212px, 100%);
    max-width: 100%;
    width: auto;
    height: auto;
    min-height: 46px;
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
  }

}

@media (max-width: 520px) {

  .footer-newsletter__field {
    height: auto;
    min-height: 40px;
  }
  .footer-newsletter input[type="email"] {
    height: auto;
    min-height: 24px;
  }

}

/* Hero (768–1024px): center copy + CTA; white heading. Does not apply below 768 or above 1024. */
@media (min-width: 768px) and (max-width: 1024px) {

  .masha-lp-top .hero .hero__inner {
    align-items: center;
    justify-content: end;
  }

  .masha-lp-top .hero .hero__copy {
    align-items: center;
    text-align: center;
	max-width: 100% !important;
    width: 100% !important;
  }

  .masha-lp-top .hero .hero__title {
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 28px rgba(42, 42, 42, 0.4);
	margin: auto;
	margin-bottom: 10px;
	max-width: 630px !important;
    width: 100% !important;
	  font-size: 35px;
  }

  .hero__title br {
    display: none;
  }

  .masha-lp-top .hero .hero__title p {
    color: inherit;
  }

  .masha-lp-top .hero.hero--no-bg .hero__title {
    color: #fff;
    text-shadow: 0 1px 28px rgba(42, 42, 42, 0.4);
  }

  .masha-lp-top .hero .hero__signature {
    justify-content: center;
  }

  .masha-lp-top .hero .hero__signature-img {
    margin-left: 0;
    object-position: center center;
	  margin-top: 10px;
  }

  .masha-lp-top .hero .hero__cta-bar.btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .masha-lp-top .hero:not(.hero--no-bg) .hero__copy {
    justify-self: center;
  }

  .masha-lp-top .hero:not(.hero--no-bg) .hero__cta-bar.btn {
    justify-self: center;
  }

  .masha-lp-top .hero__signature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0.5rem 0 0;
    padding: 0;
    box-sizing: border-box;
    white-space: normal;
  }

}

/* ================== 2565px+ ================== */
@media (min-width: 2565px) {
  .masha-lp-top .hero__inner,
  .masha-lp-top .site-header,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind,
  .section-faq,
  .site-footer {
    padding-left: 240px;
    padding-right: 240px;
  }

  .section-explore { padding-left: 240px; }
  .explore-arrows { padding-right: 240px; }

  .approach-quote-banner {
    padding: 72px 240px;
  }

  .section-contact {
    padding: 80px 240px;
  }

  .site-footer {
    padding-top: 96px;
    padding-bottom: 48px;
  }
}

/* ================== 1439px - 2560px ================== */
@media (min-width: 1439px) and (max-width: 2560px) {
  .masha-lp-top .hero__inner,
  .masha-lp-top .site-header,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind,
  .section-faq,
  .site-footer {
    padding-left: 300px;
    padding-right: 300px;
  }

  .section-explore { padding-left: 300px; }
  .explore-arrows { padding-right: 300px; }

  .approach-quote-banner {
    padding: 72px 300px;
  }

  .section-contact {
    padding: 80px 300px;
  }

  .site-footer {
    padding-top: 96px;
    padding-bottom: 48px;
	  padding-left: 0;
    padding-right: 0;
  }
	
  .footer-top {
    flex-wrap: nowrap;
    max-width: 1448px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .footer-bar {
    max-width: 1448px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* max-width cleanup */
  .masha-lp-top .site-header__inner,
  .masha-lp-top .hero__inner,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind {
    max-width: 1448px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .mission-col--left .mission-body {
    max-width: 724px;
  }
}

/* ================== 1024px - 1440px ================== */
@media (min-width: 1024px) and (max-width: 1440px) {

  .masha-lp-top .hero .hero__copy { padding-bottom: 25px; }
  .masha-lp-top .hero .hero__signature { margin-top: 25px; }

  .masha-lp-top .hero__inner,
  .masha-lp-top .site-header,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind,
  .section-faq,
  .site-footer {
    padding-left: 72px;
    padding-right: 72px;
  }

  .section-explore { padding-left: 72px; }
  .explore-arrows { padding-right: 72px; }

  .approach-quote-banner {
    padding: 72px;
  }

  .section-contact {
    padding: 48px 72px;
  }

  .site-footer {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .footer-top {
    flex-wrap: unset;
  }

  .footer-brand img {
/*     height: auto; */
	      object-fit: contain;
    object-position: left top;
  }

  .footer-tagline > p {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* ================== 768px - 1023px ================== */
@media (min-width: 768px) and (max-width: 1023px) {

  .masha-lp-top .hero__inner,
  .masha-lp-top .site-header,
  .section-quote,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind,
  .section-contact,
  .section-faq,
  .site-footer {
    padding-left: 72px;
    padding-right: 72px;
  }

  .section-about h2,
  .section-explore__heading h2,
  .section-members h2,
  .section-approach h2,
  .approach-quote h3,
  .section-mind__titles h2,
  .section-mind__titles p,
  .contact-panel h2,
  .section-faq .head h2 {
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .section-newsletter__form-wrap h2, .section-newsletter__form-wrap .name {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .footer-tagline > p {
    font-size: clamp(28px, 6vw, 32px);
  }

  .approach-col h3 { 
    font-size: clamp(28px, 6vw, 32px);
  }

  .section-approach h2 {
    margin: 0 0 72px
  }

  .section-about .body,
  .approach-col .approach-col__rich p,
  .faq-item h3,
  .faq-item__body p {
    font-size: 18px;
    line-height: 32px;
  }
  
  .faq-item__body {
    max-width: 100%;
  }

  .contact-panel h2 {
    padding-bottom:15px;
  }

  .mind-num {
    font-size: 24px;
  }

  .mind-title, .mind-title {
    font-size: 24px;
  }

  .mind-body {
    padding-bottom: 0px;
  }
  
  .mind-tag {
    margin-bottom:0px;
  }

  .mind-row__grid {
    gap: 12px;
  }

  .section-explore { padding-left: 72px; }
  .explore-arrows { padding-right: 72px; }

  .approach-quote-banner {
    padding: 72px;
  }

  .section-contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-footer {
    padding-top: 96px;
    padding-bottom: 48px;
  }
}

/* ================== Mobile (320px - 767px) ================== */
@media (max-width: 767px) {

  .masha-lp-top .hero__signature-img {
    margin-bottom: 20px;
  }

  .masha-lp-top .hero__inner,
  .masha-lp-top .site-header,
  .section-quote,
  .section-about,
  .section-mission,
  .section-members,
  .section-approach,
  .approach-quote,
  .section-mind,
  .section-contact,
  .section-faq,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-about h2,
  .section-explore__heading h2,
  .section-members h2,
  .section-approach h2,
  .approach-quote h3,
  .section-mind__titles h2,
  .section-mind__titles p,
  .section-newsletter__form-wrap h2,
  .contact-panel h2,
  .section-faq .head h2 {
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .approach-col h3 {
    font-size: clamp(28px, 6vw, 32px);
  }

  .section-newsletter__form-wrap .name {
    font-size: clamp(36px, 8vw, 44px);
  }

  .section-approach h2 {
    margin: 0 0 72px
  }

  .section-about .body,
  .approach-col .approach-col__rich p,
  .faq-item h3,
  .faq-item__body p {
    font-size: 18px;
    line-height: 32px;
  }
  
  .faq-item__body {
    max-width: 100%;
  }

  .contact-panel h2 {
    padding-bottom:15px;
  }

  .footer-top .footer-brand {
    margin: 0 auto;
  }

  .mind-num {
    font-size: 24px;
  }

  .mind-title, .mind-title {
    font-size: 24px;
  }

  .mind-body {
    padding-bottom: 0px;
  }
  
  .mind-tag {
    margin-bottom:0px;
  }

  .mind-row__grid {
    gap: 12px;
  }
  

  .section-explore { padding-left: 20px; }
  .explore-arrows { padding-right: 20px; }

  .section-quote .section-quote__qm--tl,
  .section-quote .section-quote__qm--br {
    transform: none;
  }

  .approach-quote .approach-quote__qm--tl,
  .approach-quote .approach-quote__qm--br {
    transform: none;
  }

  .approach-quote .approach-quote__text blockquote {
    font-size: 22px;
    padding: 0 28px;
    letter-spacing: normal;
  }

  .section-quote .section-quote__text p {
    font-size: 22px;
    padding: 0 28px;
    letter-spacing: normal;
  }

  .section-quote .section-quote__attr {
    margin-top: 24px;
    font-size: 18px;
  }

  .section-mission .mission-row-top {
    padding: 0;
    border: none;
  }

  .mission-col {
    padding: 20px 0;
  }

  .section-mission .mission-icon {
    padding: 0 20px 0 0;
  }

  .approach-col .approach-col__rich,
  .approach-col .approach-col__rich--list {
    font-size: 18px;
  }

  .approach-quote-banner {
    padding: 20px;
  }

  .section-contact {
    padding: 20px;
  }

  .section-contact .contact-panel {
    padding: 0;
  }

  .site-footer {
    padding-top: 96px;
    padding-bottom: 48px;
  }
}


/* Footer — 768px and below (after tablet rules so these win at 768px) */
@media (max-width: 768px) {
  .site-footer .footer-brand img {
    height: 75px;
    width: auto;
  }

  .site-footer .footer-tagline {
    max-width: 600px;
  }

  .site-footer .footer-tagline > p {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 320px) {

  .section-contact .form-actions .btn.btn--primary { 
    margin-left: 0px;
  }
}

@media (max-width: 380px) {
	.masha-lp-top .hero__title {
    	font-size: 30px;
    	line-height: 32.81px;
	}
}
