:root {
  --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));
}
@media (max-width: 1488px) {
  .container { padding-left: 24px; padding-right: 24px; width: 100%; }
}
.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;
}

/* 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;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--masha-header-h);
  padding-bottom: 16px;
}
.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;
}
@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 .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;
}
@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 {
  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:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 8.2%),
    linear-gradient(270deg, rgba(191, 185, 173, 0) 79%, rgb(191, 185, 173) 90%),
    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;
}
@media (min-width: 1024px) {
  .masha-lp-top .hero__media--mobile {
    display: none;
  }
  .masha-lp-top .hero__media--desktop {
    display: block;
  }
}
/* Mobile: image fills row 1; CTA sits in row 2 below the photo (see Figma mobile hero). */
@media (max-width: 1023px) {
  .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%;
    padding: calc(var(--masha-header-h) + clamp(0.75rem, 3vw, 1.5rem)) var(--pad-x) clamp(1.25rem, 4vh, 2rem);
    text-align: center;
  }
}
@supports (height: 100svh) {
  .masha-lp-top .hero {
    min-height: min(100svh, 1080px);
  }
}
@media (min-width: 1024px) {
  @supports (height: 100svh) {
    .masha-lp-top .hero__inner {
      min-height: min(100svh, 1080px);
    }
  }
}
@media (min-width: 1024px) {
  .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);
    max-width: 1440px;
    margin: 0 auto;
    padding-top: var(--masha-header-h);
    padding-bottom: clamp(2.5rem, 6vh, 5rem);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
}
.masha-lp-top .hero__copy {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  .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 {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 95px;
}
@media (max-width: 1023px) {
  .masha-lp-top .hero__title {
    max-width: 100%;
    font-size: 35.81px;
    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;
  }
}
@media (min-width: 1024px) {
  .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__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);
}
@media (max-width: 1023px) {
  .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));
  }
}
@media (min-width: 1024px) {
  .masha-lp-top .hero__signature-img {
    position: absolute;
    width: 154px;
    max-width: none;
    transform-origin: 50% 55%;
    margin-top: 20px;
    margin-left: -50px;
  }
}
@media (min-width: 1024px) {
  .masha-lp-top .hero__cta-bar {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 1rem 1.75rem 1rem 2.25rem;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: left;
    border-radius: 50px;
    box-sizing: border-box;
  }
}
/* Mobile: CTA row below hero photo (must follow desktop .hero__cta-bar so it wins the cascade). */
@media (max-width: 1023px) {
  .masha-lp-top .hero__cta-bar {
    grid-column: 1;
    grid-row: 2;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 66px;
    margin: 0;
    padding: 13px 28px;
    border-radius: 50px;
    box-sizing: border-box;
    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: var(--color-black);
    background: #f4cac0;
    border-radius: unset;
  }
}
@media (max-width: 768px) {
  .masha-lp-top .hero__title {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .masha-lp-top {
    --masha-hero-title-size: clamp(32px, 7.5vw, 52px);
    --masha-hero-title-tracking: 1px;
  }
}
@media (min-width: 1024px) {
  .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 (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; }
}

/* Quote / stats */
.section-quote {
  background: var(--color-white);
  padding-top: 144px;
  padding-bottom: 144px;
  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;
  padding-left: 48px;
  padding-right: 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);
}
@media (max-width: 768px) {
  .section-quote {
    padding-top: clamp(72px, 12vw, 144px);
    padding-bottom: clamp(72px, 12vw, 144px);
  }
  .section-quote__inner {
    padding-left: max(36px, 7vw);
    padding-right: max(36px, 7vw);
  }
  .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;
  }
}

/* About — Frame 1597881474 (Figma): row, center, pad 0 236px, gap 72px */
.section-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 72px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(24px, 12.3vw, 236px);
  box-sizing: border-box;
  padding-bottom: 144px;
}
@media (max-width: 1024px) {
  .section-about {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 72px;
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
  }
  .about-visual {
    align-self: center;
    width: 100%;
    max-width: min(100%, 540px);
  }
  .about-visual__frame {
    margin-left: 0;
    max-height: none;
  }
  .about-visual__ph {
    left: 0;
    font-size: clamp(40px, 11vw, 80px);
  }
  .about-visual__img {
    max-height: min(520px, 75vw);
    margin: 0 auto;
  }
  .section-about__content {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .section-about {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .section-about__content {
    gap: 24px;
    align-items: stretch;
  }
  .section-about h2 {
    font-size: clamp(32px, 6.5vw, 42px);
    line-height: 1.2;
  }
  .section-about .body {
    font-size: 17px;
    line-height: 28px;
    gap: 1rem;
  }
  .about-visual__img {
    max-height: min(440px, 85vw);
  }
  .about-visual__sig {
    width: min(42%, 220px);
    right: 6%;
    bottom: 5%;
  }
  .section-about .section-about__cta {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .section-about {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 48px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .about-visual {
    max-width: 100%;
  }
  .section-about h2 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: 1px;
  }
  .section-about .body {
    font-size: 16px;
    line-height: 26px;
  }
  .about-visual__ph {
    font-size: clamp(32px, 18vw, 56px);
    top: 4px;
  }
  .about-visual__sig {
    width: min(48%, 180px);
  }
}
/* Image column — Frame “Image” 654×626 */
.about-visual {
  position: relative;
  flex: 0 0 auto;
  width: min(100%, 654px);
  max-width: 654px;
}
.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: -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: 654px;
  max-height: 626px;
}
.about-visual__img {
  display: block;
  width: 100%;
  max-width: 654px;
  max-height: 626px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}
.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;
}
/* Frame 14767 — text column: column, flex-start, gap 40px, max 722px */
.section-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 1 722px;
  min-width: 0;
  max-width: 722px;
}
.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;
}
.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;
}

/* 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%;
  max-width: 1716px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
/* Frame 14783 — row, gap 10px, 48px row height; title flex-grow 1 */
.explore-block__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 1716px;
  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: 600;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 48px;
  color: #000000;
}
/* 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;
  padding-right: 244.67px;
}
.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: #000000;
  align-self: stretch;
  flex: none;
}
@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: 768px) {
  .explore-arrows {
    display: none;
  }
  .section-explore__heading {
    gap: 24px;
    margin: 36px auto 36px;
  }
  .section-explore__heading h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.22;
  }
  .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 / Vision — Frame 1597881473 + nested Figma frames */
.section-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(20px, 12.3vw, 236px);
  padding-top: clamp(56px, 10vw, 144px);
  padding-bottom: 56px;
  box-sizing: border-box;
}
.mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1448px;
  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%;
  max-width: 1448px;
  gap: 0;
  flex: none;
  align-self: stretch;
}
.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: #353064;
  margin: 0;
  width: 100%;
  max-width: 644px;
  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%;
}
@media (max-width: 1024px) {
  .mission-col {
    gap: 48px;
  }
  .mission-col h3 {
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .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;
  }
}
@media (max-width: 480px) {
  .section-mission {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .mission-col {
    padding: 16px 0;
    gap: 24px;
  }
  .mission-icon {
    padding: 20px;
    border-radius: 16px;
  }
  .mission-col--right .mission-icon {
    padding: 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;
  }
}

/* Memberships */
.section-members {
  padding: 16px var(--pad-x) 48px;
  padding-top: clamp(56px, 10vw, 144px);
  padding-bottom: clamp(56px, 10vw, 144px);
}
.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 32px;
}
@media (max-width: 640px) {
  .section-members h2 {
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.2;
  }
}
.logo-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  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 {
  padding: 80px var(--pad-x) 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-approach > h2 {
  font-family: var(--font-serif);
  font-size: 46px;
  text-align: center;
  margin: 0 0 72px;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
}
.approach-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .approach-cols { grid-template-columns: 1fr; }
  .approach-vdivider { display: none; }
}
.approach-vdivider {
  width: 1px;
  background: var(--color-stroke);
  min-height: 400px;
  align-self: stretch;
}
.approach-col h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 38px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 24px;
}
.approach-col .long {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
  margin: 0 0 32px;
}
.approach-col ol {
  margin: 0 0 32px;
  padding-left: 1.25rem;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
}
.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-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
  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-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.5px;
}
.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-quote {
  margin-top: 80px;
  text-align: center;
  position: relative;
  padding: 48px 24px 0;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.approach-quote h3 {
  font-family: var(--font-serif);
  font-size: 46px;
  margin: 0 0 48px;
  color: var(--color-secondary);
}
.approach-quote blockquote {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin: 0 0 32px;
  border: none;
  padding: 0;
}
/* Shrink-wrap + left-aligned lines so opening mark hugs “No” and width matches text (not full column). */
.approach-quote__text {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0 auto 32px;
  box-sizing: border-box;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 1.5px;
  color: var(--color-primary);
}
.approach-quote__text blockquote {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  border: none;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  letter-spacing: inherit;
  color: inherit;
  text-align: center;
}
/* Closing mark in the flow after the period (supertext), not right:0 of a wide box. */
.approach-quote__endmark {
  display: inline;
  white-space: nowrap;
  margin-left: 0.06em;
  vertical-align: 0.55em;
  line-height: 0;
}
.approach-quote__endmark img {
  display: inline;
  width: clamp(13px, 3.6vw, 18px);
  height: auto;
  vertical-align: middle;
  opacity: 0.92;
}
.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: translate(calc(-100% - clamp(8px, 2vw, 12px)), -0.12em);
}
/* 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%;
}
@media (max-width: 768px) {
  .approach-quote__text {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.28;
  }
  .approach-quote h3 {
    font-size: clamp(32px, 8vw, 46px);
    margin-bottom: 32px;
  }
  .approach-quote blockquote {
    font-size: clamp(22px, 5.2vw, 30px);
    line-height: 1.28;
  }
  .approach-quote__text blockquote {
    font-size: inherit;
    line-height: inherit;
  }
}

/* Mind list */
.section-mind {
  padding: 72px var(--pad-x) 120px;
}
.section-mind__titles {
  text-align: center;
  margin-bottom: 48px;
}
.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: end;
}
@media (max-width: 900px) {
  .mind-row__grid { grid-template-columns: 1fr; }
}
.mind-num {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 74px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0;
}
.mind-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 38px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin: 0 0 8px;
}
.mind-tag {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #8b8aa1;
  margin: 0 0 12px;
}
.mind-body {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  padding-bottom: 28px;
}

/* Newsletter strip */
.section-newsletter {
  position: relative;
  background: #200502;
  min-height: 400px;
  overflow: hidden;
}
.section-newsletter__bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.section-newsletter__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-newsletter__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.section-newsletter__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 696px;
}
.section-newsletter__photo {
  flex: 0 0 min(874px, 100%);
  min-height: 400px;
  position: relative;
}
.section-newsletter__photo img {
  position: absolute;
  left: max(0px, calc((100% - 619px) / 2));
  top: 0;
  width: min(619px, 100%);
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.section-newsletter__form-wrap {
  flex: 1;
  padding: 48px var(--pad-x) 48px 48px;
  min-width: 280px;
}
.section-newsletter__form-wrap h2 {
  color: var(--color-white);
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  margin: 0 0 8px;
}
.section-newsletter__form-wrap .name {
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  color: var(--color-white);
  margin: 0 0 24px;
}
.section-newsletter input[type="email"] {
  width: 100%;
  max-width: 375px;
  padding: 8px 12px;
  border: 1px solid var(--color-stroke);
  font-size: 16px;
  margin-bottom: 24px;
}

/* Instagram */
.section-insta { overflow: hidden; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
.insta-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-cta {
  background: var(--color-peach);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
}
.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; }
.insta-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 1.5px;
  color: var(--color-black);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.insta-cta .ig-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}

/* Contact */
.section-contact {
  background: var(--color-peach-light);
  padding: 48px var(--pad-x) 80px;
  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-size: 46px;
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}
.contact-panel .sub {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-subtle);
  max-width: 900px;
  margin: 0 auto 32px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-subtle);
  margin-bottom: 10px;
}
.field input, .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-secondary);
}
.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;
}
.form-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .form-row-bottom { grid-template-columns: 1fr; }
}
.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);
}
.form-note {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  margin-top: 24px;
}
.form-actions { text-align: center; margin-top: 24px; }

/* FAQ */
.section-faq {
  padding: 72px var(--pad-x) 120px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-faq .head {
  text-align: center;
  margin-bottom: 48px;
}
.section-faq .head h2 {
  font-family: var(--font-serif);
  font-size: 46px;
  color: var(--color-primary);
  margin: 0 0 16px;
  letter-spacing: 1.5px;
}
.section-faq .head p {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-stroke);
  padding: 16px 0;
}
.faq-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  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-weight: 600;
  font-size: 24px;
  line-height: 35px;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: 1.5px;
}
.faq-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.faq-item__body {
  font-size: 22px;
  line-height: 31px;
  color: var(--color-secondary);
  margin-top: 16px;
  max-width: calc(100% - 40px);
}
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);
  padding: 96px var(--pad-x) 48px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto 64px;
}
.footer-brand img { height: 122px; width: auto; }
.footer-contact h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
.footer-contact p, .footer-contact a {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-subtle);
  letter-spacing: 1px;
  margin: 0 0 4px;
}
.footer-tagline {
  max-width: 479px;
}
.footer-tagline p {
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  color: var(--color-secondary);
  margin: 0 0 24px;
}
.footer-tagline .fake-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.3);
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 100%;
}
.footer-tagline .fake-input span {
  font-size: 16px;
  color: var(--color-subtle);
}
.footer-tagline .fake-input img { width: 16px; height: 16px; }
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-stroke);
  font-size: 14px;
  color: var(--color-subtle);
  letter-spacing: 1.5px;
}
.footer-social { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.footer-social a {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-social img { width: 24px; height: 24px; }
