:root {
  --bg: #f7f4f1;
  --bg-2: #ffffff;
  --bg-3: #efeae6;
  --text: #1a1418;
  --muted: #6e646b;
  --line: rgba(26, 20, 24, 0.1);
  --rose: #d2466e;
  --rose-2: #b8345a;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav: 4.25rem;
}

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

html {
  background: var(--bg);
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none !important;
  }
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}

.cursor.is-hover {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1.5px solid var(--rose);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-content: center;
  gap: 1.25rem;
  justify-items: center;
}

.loader__mark {
  width: min(140px, 36vw);
  height: auto;
}

.loader__bar {
  width: 120px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--rose);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(26, 20, 24, 0.05);
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.is-on {
  background: rgba(255, 252, 249, 0.97);
  box-shadow: 0 10px 30px rgba(26, 20, 24, 0.07);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

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

.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--rose);
}

.nav__phone {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}

.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: #1a1418;
  transition: 0.3s var(--ease);
}

.nav__burger.is-open span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav__burger.is-open span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer a {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 600;
}

.drawer__phone {
  margin-top: 1rem;
  color: var(--rose) !important;
  font-size: 1.1rem !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.5rem;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

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

.btn--fill {
  background: var(--rose);
  color: #fff;
}

.btn--fill:hover {
  background: var(--rose-2);
}

.btn--line {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn--line:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.link-arrow {
  display: inline-flex;
  margin-top: 1.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--rose);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: calc(var(--nav) + 1.5rem) clamp(1.25rem, 4vw, 3.5rem) 4.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 0;
    height: min(68svh, 520px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: calc(var(--nav) + 0.35rem) 1.15rem 3.4rem;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    margin-inline: auto;
    padding-top: 2rem;
    padding-bottom: 1.35rem;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .hero__sub {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .hero__kicker {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
  }

  .hero__cta {
    gap: 0.55rem;
    justify-content: center;
  }

  .hero__cta .btn {
    padding: 0.8rem 1.1rem;
    font-size: 0.8rem;
  }

  .hero__controls {
    bottom: 0.9rem;
  }
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s linear;
}

.hero__slide.is-active img {
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 12, 16, 0.72) 0%, rgba(18, 12, 16, 0.28) 55%, rgba(18, 12, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 12, 16, 0.35) 0%, transparent 40%, rgba(18, 12, 16, 0.78) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7b4c8;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: #fff;
}

.hero__title .split {
  display: block;
  overflow: hidden;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 1.25rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  width: max-content;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.35s var(--ease);
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* Strip */
.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.strip__item {
  padding: 1.35rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  border-right: 1px solid var(--line);
}

.strip__item:last-child {
  border-right: 0;
}

.strip__item strong {
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
}

/* About */
.about {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.about__copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.about__tags {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.about__tags li {
  font-size: 0.9rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rose);
  color: var(--text);
}

/* ShuLift */
.shulift {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--bg-2);
}

.shulift__head {
  width: min(800px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
  text-align: center;
}

.shulift__head h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.shulift__lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.shulift__stage {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) 3rem;
  overflow: hidden;
}

.shulift__bg {
  position: absolute;
  inset: 0;
}

.shulift__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}

.shulift__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.shulift__cards article {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.6rem 1.35rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.shulift__cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 20, 24, 0.1);
}

.shulift__cards span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--rose);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.shulift__cards h3 {
  font-size: 1.15rem;
  margin: 0.85rem 0 0.55rem;
}

.shulift__cards p {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  width: min(720px, calc(100% - 2.5rem));
  margin: 3.5rem auto 0;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.quote p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Visual breaks between text */
.break {
  position: relative;
  overflow: hidden;
  min-height: min(72vh, 640px);
  background: var(--bg-3);
}

.break > img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  object-position: center 20%;
}

.break__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(18, 12, 16, 0.72));
  color: #fff;
}

.break__cap p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.break--split {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-2);
}

.break--split-rev .break__media {
  order: 2;
}

.break--split-rev .break__text {
  order: 1;
}

.break__media {
  min-height: 420px;
}

.break__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.break__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.break__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.break__text p:not(.label) {
  color: var(--muted);
  max-width: 32rem;
}

.break--duo {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.break--duo figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-3);
}

.break--duo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.break--duo figure:hover img {
  transform: scale(1.04);
}

.break--duo figcaption {
  padding: 0.75rem 0.15rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .break {
    min-height: 0;
  }

  .break > img {
    height: min(52vh, 420px);
  }

  .break--split,
  .break--duo {
    grid-template-columns: 1fr;
  }

  .break--split-rev .break__media,
  .break--split-rev .break__text {
    order: initial;
  }

  .break__media,
  .break__media img {
    min-height: 320px;
  }
}

/* Intro */
.intro {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg-2);
}

.intro__wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.intro__wrap > h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  max-width: 18ch;
  margin-bottom: 2rem;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.intro__col p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.intro__bullets {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.intro__bullets li {
  padding-left: 1rem;
  border-left: 2px solid var(--rose);
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.98rem;
}

/* Aging */
.aging {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.aging__wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.aging__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.aging__copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.aging__aside {
  display: grid;
  gap: 0.85rem;
}

.aging__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem;
}

.aging__card span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--rose);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.aging__card h3 {
  font-size: 1.05rem;
  margin: 0.45rem 0 0.25rem;
}

.aging__card p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Principles wide */
.principles__intro {
  color: var(--muted);
  max-width: 40rem;
  margin-top: 0.75rem;
}

.principles__list--wide {
  grid-template-columns: 1fr;
}

.principles__list--wide article {
  padding: 1.75rem 1.5rem;
}

.principles__list--wide article p + p {
  margin-top: 0.75rem;
}

/* Regions */
.regions {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg-2);
}

.regions__head {
  width: min(800px, 100%);
  margin: 0 auto 2.5rem;
}

.regions__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.regions__head p {
  color: var(--muted);
}

.regions__grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.regions__grid article {
  border-top: 3px solid var(--rose);
  background: var(--bg);
  padding: 1.5rem 1.25rem;
}

.regions__grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.regions__grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Support */
.support {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.support__wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.support__wrap > h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 2rem;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.support__grid article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.35rem 1.15rem;
}

.support__grid h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.support__grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Protocol */
.protocol {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg-2);
}

.protocol__wrap {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.protocol__wrap > h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  margin-bottom: 1rem;
}

.protocol__lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

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

.protocol__step {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.3rem;
}

.protocol__step span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--rose);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.protocol__step h3 {
  font-size: 1.15rem;
  margin: 0.65rem 0 0.45rem;
}

.protocol__step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote--in {
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

/* Whom */
.whom {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.whom__wrap {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.whom__wrap > h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 2rem;
  max-width: 20ch;
}

.whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.whom__grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  color: var(--rose);
}

.whom__grid ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.whom__grid li {
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
}

.whom__grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

/* FAQ */
.faq {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg-2);
}

.faq__wrap {
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq__wrap > h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 2rem;
}

.faq__list {
  display: grid;
  gap: 0.5rem;
}

.faq__list details {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 1rem 1.2rem;
}

.faq__list summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary::after {
  content: "+";
  color: var(--rose);
  font-weight: 700;
}

.faq__list details[open] summary::after {
  content: "-";
}

.faq__list details p {
  color: var(--muted);
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.contact__note {
  color: var(--muted);
  margin: -1rem 0 1.75rem;
  max-width: 28rem;
}

/* Principles */
.principles {
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.principles__head {
  width: min(900px, 100%);
  margin: 0 auto 2.5rem;
}

.principles__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.principles__list {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.principles__list article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.3s, transform 0.45s var(--ease);
}

.principles__list article:hover {
  border-color: rgba(210, 70, 110, 0.35);
  transform: translateY(-4px);
}

.principles__list span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--rose);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.principles__list h3 {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
}

.principles__list p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services removed: site is ShuLift-only */

/* Gallery */
.gallery {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg-2);
}

.gallery__head {
  width: min(1200px, 100%);
  margin: 0 auto 2rem;
}

.gallery__head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.gallery__grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: saturate(0.95);
}

.gallery__grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* Path */
.path {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--bg);
}

.path > .label,
.path > h2 {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.path > h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 2.5rem;
}

.path__list {
  width: min(900px, 100%);
  margin: 0 auto;
}

.path__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.path__row:last-child {
  border-bottom: 1px solid var(--line);
}

.path__row b {
  font-family: var(--display);
  color: var(--rose);
  font-size: 0.9rem;
}

.path__row h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.path__row p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 70vh;
}

.contact__panel {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}

.contact__panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
}

.contact__rows {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.contact__rows a,
.contact__rows div {
  display: grid;
  gap: 0.25rem;
}

.contact__rows span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__rows strong {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.45;
}

.contact__visual {
  position: relative;
  min-height: 360px;
}

.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.footer {
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--bg);
}

.footer__brand {
  height: 40px;
  width: auto;
}

.footer__top p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer__copy a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.footer__copy a:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

@media (max-width: 960px) {
  .nav__links,
  .nav__phone {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .about__grid,
  .shulift__cards,
  .contact,
  .principles__list,
  .intro__grid,
  .aging__wrap,
  .regions__grid,
  .support__grid,
  .protocol__steps,
  .whom__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid,
  .regions__grid,
  .support__grid,
  .protocol__steps,
  .whom__grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip__inner {
    grid-template-columns: 1fr;
  }

  .strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact__visual {
    min-height: 280px;
  }

  .shulift__stage {
    min-height: auto;
    padding-top: 2rem;
  }

  .shulift__bg {
    position: relative;
    height: 240px;
    margin: 0 -1.25rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .gallery__grid,
  .regions__grid,
  .support__grid,
  .protocol__steps,
  .whom__grid {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }
}

/* Chaty-style floating contact (left) */
.chaty {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.chaty__btn {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(210, 70, 110, 0.38);
  transition: transform 0.3s var(--ease), background 0.25s;
}

.chaty__btn:hover {
  background: var(--rose-2);
  transform: scale(1.05);
}

.chaty__btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.chaty__btn-close {
  display: none;
}

.chaty.is-open .chaty__btn-open {
  display: none;
}

.chaty.is-open .chaty__btn-close {
  display: block;
}

.chaty__panel {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(250px, calc(100vw - 2.4rem));
}

.chaty__panel[hidden] {
  display: none;
}

.chaty__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  box-shadow: 0 10px 28px rgba(26, 20, 24, 0.12);
  transform-origin: left bottom;
  animation: chatyIn 0.35s var(--ease) both;
}

.chaty__item:nth-child(1) { animation-delay: 0.02s; }
.chaty__item:nth-child(2) { animation-delay: 0.06s; }
.chaty__item:nth-child(3) { animation-delay: 0.1s; }
.chaty__item:nth-child(4) { animation-delay: 0.14s; }

@keyframes chatyIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chaty__ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.chaty__ico svg {
  width: 20px;
  height: 20px;
}

.chaty__item--wa .chaty__ico { background: #25d366; }
.chaty__item--tel .chaty__ico { background: #1a1418; }
.chaty__item--ig .chaty__ico {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}
.chaty__item--mail .chaty__ico { background: var(--rose); }

.chaty__meta {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.chaty__meta strong {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.chaty__meta small {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .chaty {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .chaty__btn {
    width: 54px;
    height: 54px;
  }
}
