:root {
  --lv-yellow-200: #ffe486;
  --lv-yellow-400: #f2c94c;
  --lv-yellow-500: #f4b400;
  --lv-purple-500: #7a3ea5;
  --lv-purple-600: #6a1b9a;
  --lv-purple-700: #57246e;
  --lv-purple-900: #25112f;
  --lv-lilac: #f5ecff;
  --lv-lilac-strong: #ead8ff;
  --lv-paper: #fffdf9;
  --lv-white: #ffffff;
  --lv-ink: #2d1938;
  --lv-muted: #6c5b78;
  --lv-border: rgba(87, 36, 110, 0.14);
  --lv-border-strong: rgba(87, 36, 110, 0.22);
  --lv-shadow: 0 22px 56px rgba(55, 19, 77, 0.12);
  --lv-shadow-strong: 0 32px 72px rgba(45, 17, 63, 0.18);
  --lv-radius-lg: 34px;
  --lv-radius-md: 28px;
  --lv-radius-sm: 22px;
  --lv-hero-header-overlap: 126px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--lv-ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 6% 0%, rgba(244, 180, 0, 0.22), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(122, 62, 165, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #fcf4ff 46%, #fff8ef 100%);
}

::selection {
  background: rgba(244, 180, 0, 0.28);
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.lv-screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lv-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.lv-main {
  overflow-x: hidden;
  overflow-x: clip;
}

#about,
#volunteer,
#services,
#cases,
#process,
#contact {
  scroll-margin-top: 132px;
}

.lv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-purple-700);
}

.lv-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lv-yellow-500), var(--lv-purple-500));
}

.lv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lv-button:hover,
.lv-button:focus-visible,
.lv-header__link:hover,
.lv-header__link:focus-visible {
  transform: translateY(-2px);
}

.lv-button--primary {
  background: linear-gradient(135deg, var(--lv-yellow-400), var(--lv-yellow-500));
  color: var(--lv-purple-900);
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.28);
}

.lv-button--secondary {
  border-color: var(--lv-border-strong);
  background: rgba(255, 255, 255, 0.74);
  color: var(--lv-purple-700);
  backdrop-filter: blur(8px);
}

.lv-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  padding-top: 18px;
}

.lv-header__capsule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  backdrop-filter: blur(18px) saturate(140%);
}

.lv-header__capsule::before,
.lv-header__capsule::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.lv-header__capsule::before {
  top: -36px;
  left: 28px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.28) 0%, rgba(244, 180, 0, 0) 72%);
  filter: blur(8px);
}

.lv-header__capsule::after {
  top: -60px;
  right: 10%;
  width: 280px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(122, 62, 165, 0.2), rgba(244, 180, 0, 0.1));
  filter: blur(14px);
}

.lv-header__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 12px 8px 8px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
}

.lv-header__brand-mark {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
  filter:
    drop-shadow(0 10px 18px rgba(87, 36, 110, 0.16))
    drop-shadow(0 0 16px rgba(244, 180, 0, 0.18));
}

.lv-header__brand-copy {
  display: grid;
  gap: 4px;
}

.lv-header__brand-copy strong {
  font-size: 18px;
  color: var(--lv-purple-900);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lv-header__brand-copy span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-muted);
}

.lv-header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.lv-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lv-header__lang {
  position: relative;
  flex: 0 0 auto;
  margin-left: 0;
}

.lv-header__lang .nm-lang {
  position: relative;
  display: block;
}

.lv-header__lang .nm-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 242, 255, 0.74));
  color: var(--lv-purple-700);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 14px 28px rgba(87, 36, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lv-header__lang .nm-lang__trigger-icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.lv-header__lang .nm-lang__menu {
  position: absolute;
  top: calc(100%);
  right: 0;
  z-index: 25;
  display: grid;
  gap: 6px;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 255, 0.96));
  box-shadow: 0 24px 48px rgba(37, 20, 54, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.lv-header__lang .nm-lang:hover .nm-lang__menu,
.lv-header__lang .nm-lang:focus-within .nm-lang__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lv-header__lang .nm-lang:hover .nm-lang__trigger,
.lv-header__lang .nm-lang:focus-within .nm-lang__trigger {
  transform: translateY(-2px);
  border-color: rgba(244, 180, 0, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 225, 0.9));
  box-shadow: 0 18px 34px rgba(87, 36, 110, 0.16);
}

.lv-header__lang .nm-lang:hover .nm-lang__trigger-icon,
.lv-header__lang .nm-lang:focus-within .nm-lang__trigger-icon {
  transform: rotate(225deg) translateY(-1px);
}

.lv-header__lang .nm-lang__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--lv-purple-900);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.lv-header__lang .nm-lang__link:hover,
.lv-header__lang .nm-lang__link:focus-visible {
  background: rgba(87, 36, 110, 0.08);
  color: var(--lv-purple-700);
}

.lv-header__lang .nm-lang__link.nm-is-active {
  background: rgba(244, 180, 0, 0.14);
}

.lv-header__lang .nm-lang__name {
  font-size: 13px;
  font-weight: 700;
}

.lv-header__lang .nm-lang__code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-muted);
}

.lv-header__lang .nm-lang__trigger:focus-visible,
.lv-header__lang .nm-lang__link:focus-visible {
  outline: 2px solid rgba(87, 36, 110, 0.28);
  outline-offset: 2px;
}

.lv-header__menu-mobile {
  display: none;
}

.lv-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  color: var(--lv-purple-700);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.lv-header__link:hover,
.lv-header__link:focus-visible {
  border-color: rgba(244, 180, 0, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 225, 0.8));
  color: var(--lv-purple-900);
  box-shadow:
    0 10px 22px rgba(87, 36, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lv-hero {
  position: relative;
  isolation: isolate;
  margin-top: calc(var(--lv-hero-header-overlap) * -1);
  min-height: 100svh;
  padding: 0;
}

.lv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(16, 18, 28, 0.16) 100%),
    linear-gradient(90deg, rgba(14, 15, 24, 0.28) 0%, rgba(14, 15, 24, 0.08) 34%, rgba(14, 15, 24, 0) 56%),
    radial-gradient(circle at 18% 18%, rgba(255, 228, 134, 0.16), rgba(255, 228, 134, 0) 32%);
  z-index: 1;
  pointer-events: none;
}

.lv-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: calc(26% + 2px);
  background: linear-gradient(180deg, rgba(10, 11, 18, 0), rgba(10, 11, 18, 0.34));
  z-index: 1;
  pointer-events: none;
}

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

.lv-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lv-hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lv-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 100svh;
}

.lv-hero__aside,
.lv-about__story,
.lv-about__point,
.lv-card,
.lv-hero-panel__card,
.lv-process__intro,
.lv-timeline li,
.lv-cta {
  border: 1px solid var(--lv-border);
  box-shadow: var(--lv-shadow);
}

.lv-hero__copy {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  display: grid;
  z-index: 2;
  justify-items: center;
  align-content: start;
  gap: 0;
  padding: clamp(116px, 12vw, 156px) 0 40px;
  border: 0;
  box-shadow: none;
  background: none;
  overflow: visible;
}

.lv-hero__copy > * {
  position: relative;
  z-index: 1;
}

.lv-hero__copy::after {
  content: none;
}

.lv-hero__copy h1 {
  max-width: none;
  font-size: clamp(3.8rem, 7vw, 7rem);
  color: var(--lv-white);
  line-height: 0.9;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 16px 32px rgba(8, 10, 18, 0.28);
  text-align: center;
}

.lv-hero__offer {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: min(100%, 360px);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
  box-shadow: 0 22px 48px rgba(8, 10, 18, 0.18);
  backdrop-filter: blur(18px);
  color: var(--lv-white);
  opacity: 0;
  animation: lv-hero-card-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.lv-hero__offer-label {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 228, 134, 0.96);
}

.lv-hero__offer-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.lv-hero__offer-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.lv-hero__offer-list li::before {
  content: "";
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.48em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-yellow-400), var(--lv-yellow-500));
  transform: none;
}

@media (min-width: 1101px) {
  .lv-hero__offer {
    align-self: start;
    width: min(100%, 390px);
    margin-top: -12px;
    padding: 28px 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
      linear-gradient(135deg, rgba(255, 228, 134, 0.12), rgba(255, 255, 255, 0) 34%, rgba(122, 62, 165, 0.14) 100%);
    box-shadow:
      0 28px 60px rgba(8, 10, 18, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(22px) saturate(135%);
    opacity: 0;
    animation: lv-hero-card-in 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s forwards;
    overflow: hidden;
  }

  .lv-hero__offer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      radial-gradient(circle at top left, rgba(255, 228, 134, 0.18), rgba(255, 228, 134, 0) 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .lv-hero__offer > * {
    position: relative;
    z-index: 1;
  }

  .lv-hero__offer-label {
    margin-bottom: 20px;
    padding-left: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: none;
    color: var(--lv-white);
    text-shadow: 0 12px 24px rgba(8, 10, 18, 0.22);
    text-align: center;
  }

  .lv-hero__offer-list {
    gap: 12px;
  }

  .lv-hero__offer-list li {
    gap: 16px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.015em;
    color: rgba(255, 255, 255, 0.98);
    opacity: 0;
    animation: lv-hero-card-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  .lv-hero__offer-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .lv-hero__offer-list li:nth-child(1) {
    animation-delay: 0.2s;
  }

  .lv-hero__offer-list li:nth-child(2) {
    animation-delay: 0.34s;
  }

  .lv-hero__offer-list li:nth-child(3) {
    animation-delay: 0.48s;
  }

  .lv-hero__offer-list li::before {
    width: 10px;
    height: 10px;
    margin-top: 0.42em;
    box-shadow: 0 0 0 7px rgba(255, 228, 134, 0.12);
    animation: lv-hero-dot-pulse 2.4s ease-in-out infinite;
  }

  .lv-hero__offer-list li:nth-child(2)::before {
    animation-delay: 0.35s;
  }

  .lv-hero__offer-list li:nth-child(3)::before {
    animation-delay: 0.7s;
  }
}

@keyframes lv-hero-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(255, 228, 134, 0.12);
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 11px rgba(255, 228, 134, 0.06);
  }
}

.lv-hero__visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: 100%;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 0;
  animation: lv-hero-visual-in 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.22s forwards;
}

.lv-hero__visual::before {
  content: "";
  position: absolute;
  inset: auto 8% 0 auto;
  width: min(720px, 72%);
  height: 72%;
  border-radius: 50% 50% 0 0;
  filter: blur(10px);
}

.lv-hero__visual::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(760px, 84%);
  height: 22%;
  background: radial-gradient(circle at 50% 50%, rgba(20, 18, 30, 0.34), rgba(20, 18, 30, 0) 72%);
  filter: blur(18px);
}

.lv-hero__image {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  max-width: none;
  height: auto;
}

@keyframes lv-hero-card-in {
  from {
    opacity: 0;
    transform: translate3d(-48px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lv-hero-visual-in {
  from {
    opacity: 0;
    transform: translate3d(56px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.lv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lv-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.lv-hero__meta li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(87, 36, 110, 0.08);
  color: var(--lv-purple-700);
  font-size: 14px;
  font-weight: 700;
}

.lv-hero__aside {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-radius: var(--lv-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 228, 134, 0.18), transparent 30%),
    linear-gradient(160deg, #381549 0%, #57246e 58%, #6a1b9a 100%);
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--lv-shadow-strong);
}

.lv-hero__aside::before {
  content: "";
  position: absolute;
  inset: auto 28px 26px auto;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(16deg);
}

.lv-hero__aside-label,
.lv-hero-panel__label,
.lv-card__tag,
.lv-case-card__meta,
.lv-about__point-year {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lv-hero__aside-label {
  color: rgba(255, 228, 134, 0.9);
}

.lv-hero__aside h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--lv-white);
}

.lv-mini-list,
.lv-case-card__list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.lv-mini-list li,
.lv-case-card__list li {
  position: relative;
  padding-left: 18px;
}

.lv-case-card__list li {
  color: var(--lv-muted);
}

.lv-mini-list li::before,
.lv-case-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-yellow-400), var(--lv-yellow-500));
  transform: translateY(-50%);
}

.lv-hero-panel {
  margin-top: 32px;
  padding-bottom: 24px;
}

@keyframes lv-kite-sway {
  0% {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
  }

  25% {
    transform: translate3d(-8px, 10px, 0) rotate(2deg) scale(1.02);
  }

  50% {
    transform: translate3d(6px, -4px, 0) rotate(6deg) scale(1.03);
  }

  75% {
    transform: translate3d(-4px, 12px, 0) rotate(-1deg) scale(1.01);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
  }
}

.lv-hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lv-hero-panel__card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--lv-radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.lv-hero-panel__label,
.lv-card__tag,
.lv-about__point-year {
  color: var(--lv-purple-600);
}

.lv-hero-panel__card h3,
.lv-card h3,
.lv-about__point h3,
.lv-case-card h3,
.lv-timeline h3,
.lv-cta h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  color: var(--lv-purple-900);
}

.lv-hero-panel__card p:not(.lv-hero-panel__label),
.lv-card p:not(.lv-card__tag),
.lv-about__story p,
.lv-about__point p:not(.lv-about__point-year),
.lv-process__intro p,
.lv-footer__text,
.lv-footer__channel,
.lv-footer__copyright {
  color: var(--lv-muted);
}

.lv-section {
  padding: 54px 0;
}

.lv-section--about {
  padding-top: 38px;
}

.lv-section--volunteer {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 44px;
}

.lv-volunteer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.8vw, 32px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(43, 17, 59, 0.24);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 228, 134, 0.24), rgba(255, 228, 134, 0) 36%),
    linear-gradient(145deg, #2f123f 0%, #4f2068 58%, #6a1b9a 100%);
  color: rgba(255, 255, 255, 0.9);
  justify-items: center;
  text-align: center;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.lv-volunteer:hover,
.lv-volunteer:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 34px 72px rgba(43, 17, 59, 0.3);
}

.lv-volunteer::before,
.lv-volunteer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lv-volunteer::before {
  right: -56px;
  bottom: -84px;
  width: 230px;
  height: 230px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  transform: rotate(22deg);
}

.lv-volunteer::after {
  left: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.26) 0%, rgba(244, 180, 0, 0) 72%);
  filter: blur(10px);
}

.lv-volunteer__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
}

.lv-volunteer__copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.lv-volunteer__kicker {
  color: rgba(255, 228, 134, 0.95);
}

.lv-volunteer__kicker::before {
  background: linear-gradient(90deg, rgba(255, 228, 134, 0.92), rgba(255, 255, 255, 0.76));
}

.lv-volunteer__copy h2 {
  max-width: 26ch;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--lv-white);
}

.lv-volunteer__subtitle {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lv-volunteer__copy p:not(.lv-volunteer__subtitle):not(.lv-kicker) {
  max-width: 68ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.lv-volunteer .lv-actions {
  justify-content: center;
}

.lv-volunteer__button {
  min-width: 250px;
}

.lv-section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 30px;
}

.lv-section-heading h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.6rem);
  color: var(--lv-purple-900);
}

.lv-about {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.lv-about__heading {
  display: grid;
  gap: 14px;
  max-width: none;
}

.lv-about__heading h2 {
  width: fit-content;
  margin-inline: auto;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(37, 17, 47, 0.22);
  font-size: clamp(1.7rem, 2.65vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  color: var(--lv-purple-900);
}

.lv-about__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
}

.lv-about__row--top {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.lv-about__row--bottom {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.lv-about__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  overflow: hidden;
  background: #ded8d1;
  box-shadow: 0 22px 44px rgba(45, 17, 63, 0.14);
}

.lv-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lv-about__media--primary img {
  object-position: center 34%;
}

.lv-about__media--secondary img {
  object-position: center 46%;
}

.lv-about__copy {
  display: grid;
  align-content: center;
}

.lv-about__lead {
  max-width: 33ch;
  font-size: clamp(1.12rem, 1.42vw, 1.42rem);
  line-height: 1.56;
  color: var(--lv-ink);
}

.lv-about__strengths {
  display: grid;
  align-content: stretch;
}

.lv-about__strength-list {
  list-style: none;
  border-top: 1px solid rgba(37, 17, 47, 0.2);
  border-bottom: 1px solid rgba(37, 17, 47, 0.2);
}

.lv-about__strength-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(37, 17, 47, 0.15);
}

.lv-about__strength-list li:last-child {
  border-bottom: 0;
}

.lv-about__strength-index {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  min-height: 24px;
  padding-left: 10px;
  border-left: 2px solid rgba(106, 27, 154, 0.36);
  color: rgba(37, 17, 47, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.lv-about__strength-list p {
  color: var(--lv-ink);
  line-height: 1.55;
}

.lv-services {
  display: grid;
  gap: 26px;
}

.lv-services__intro {
  display: grid;
  gap: 14px;
  max-width: none;
}

.lv-services__intro h2 {
  width: fit-content;
  margin-inline: auto;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(37, 17, 47, 0.22);
  font-size: clamp(1.7rem, 2.65vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  color: var(--lv-purple-900);
}

.lv-services__intro p:last-child {
  max-width: 48ch;
  color: var(--lv-muted);
}

.lv-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lv-service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 255, 0.74));
  box-shadow: 0 18px 40px rgba(55, 19, 77, 0.08);
}

.lv-service-card > :not(.lv-service-card__kite) {
  position: relative;
  z-index: 2;
}

.lv-service-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 236, 255, 0.84));
}

.lv-service-card__tag {
  color: var(--lv-purple-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lv-service-card h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
  color: var(--lv-purple-900);
}

.lv-service-card p:not(.lv-service-card__tag) {
  color: var(--lv-muted);
}

.lv-service-card--kite {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(247, 239, 255, 0.84)),
    linear-gradient(135deg, rgba(106, 27, 154, 0.08), rgba(244, 180, 0, 0.12));
}

.lv-service-card--kite::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.6), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(106, 27, 154, 0.08));
  z-index: 1;
}

.lv-service-card__kite {
  position: absolute;
  top: -10%;
  right: -8%;
  display: block;
  width: 78%;
  height: auto;
  opacity: 0.22;
  transform-origin: 50% 20%;
  animation: lv-kite-sway 9s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.lv-service-card--kite-one .lv-service-card__kite {
  top: -6%;
  right: -4%;
  animation-duration: 8.6s;
}

.lv-service-card--kite-two .lv-service-card__kite {
  top: -10%;
  right: -12%;
  animation-duration: 10.2s;
  animation-delay: -2.4s;
}

.lv-service-card--kite-three .lv-service-card__kite {
  top: -4%;
  right: -8%;
  animation-duration: 9.4s;
  animation-delay: -1.1s;
}

.lv-service-card--kite-four .lv-service-card__kite {
  top: -12%;
  right: -6%;
  animation-duration: 11s;
  animation-delay: -3.2s;
}

.lv-showcase {
  position: relative;
  padding: 62px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.18), transparent 28%),
    linear-gradient(145deg, #2f123f 0%, #512468 56%, #6a1b9a 100%);
}

.lv-showcase::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(22deg);
}

.lv-section-heading--light .lv-kicker,
.lv-section-heading--light h2,
.lv-section-heading--light p {
  color: var(--lv-white);
}

.lv-section-heading--light .lv-kicker::before {
  background: linear-gradient(90deg, var(--lv-yellow-400), rgba(255, 255, 255, 0.86));
}

.lv-showcase .lv-section-heading {
  max-width: none;
}

.lv-showcase .lv-section-heading h2 {
  width: fit-content;
  margin-inline: auto;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: clamp(1.7rem, 2.65vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  color: var(--lv-white);
}

.lv-case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: minmax(180px, auto);
}

.lv-case-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  border-radius: 30px;
  perspective: 1400px;
  cursor: pointer;
}

.lv-case-card--featured {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 658px;
}

.lv-case-card:focus-visible {
  outline: 2px solid rgba(255, 228, 134, 0.88);
  outline-offset: 6px;
}

.lv-case-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lv-case-card:hover .lv-case-card__inner,
.lv-case-card:focus-visible .lv-case-card__inner,
.lv-case-card:focus-within .lv-case-card__inner {
  transform: rotateY(180deg);
}

.lv-case-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 24px 44px rgba(19, 7, 29, 0.18);
  transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lv-case-card__face--front {
  padding: 0;
  background: #3c1f50;
}

.lv-case-card__face--front::after {
  content: none;
}

.lv-case-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lv-case-card--festival .lv-case-card__image {
  object-position: center 35%;
}

.lv-case-card--kids .lv-case-card__image {
  object-position: center 42%;
}

.lv-case-card--family .lv-case-card__image {
  object-position: center 30%;
}

.lv-case-card__face--front > :not(.lv-case-card__image) {
  display: none;
}

.lv-case-card--festival .lv-case-card__face {
  border-color: rgba(255, 255, 255, 0.32);
}

.lv-case-card__face--back {
  align-content: start;
  padding: 24px;
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at top right, rgba(255, 228, 134, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(245, 236, 255, 0.92));
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 22px 40px rgba(19, 7, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.lv-case-card:hover .lv-case-card__image,
.lv-case-card:focus-visible .lv-case-card__image,
.lv-case-card:focus-within .lv-case-card__image {
  transform: scale(1.03);
}

.lv-case-card__meta {
  color: var(--lv-purple-600);
}

.lv-case-card__face--back h3 {
  margin: 0;
  color: var(--lv-purple-900);
  font-size: clamp(1.35rem, 1.55vw, 1.7rem);
}

.lv-case-card__face--back p:not(.lv-case-card__meta) {
  color: var(--lv-muted);
}

.lv-case-card__result {
  margin-top: 2px;
}

.lv-case-card__face--back .lv-case-card__list li {
  color: var(--lv-muted);
}

.lv-case-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.lv-case-card__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 17, 47, 0.08);
  color: var(--lv-purple-700);
  font-size: 13px;
  font-weight: 700;
}

.lv-case-card--festival .lv-case-card__face--back {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 134, 0.34), transparent 36%),
    linear-gradient(148deg, rgba(255, 255, 255, 0.99), rgba(245, 236, 255, 0.95));
}

.lv-case-card--festival .lv-case-card__stats span {
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.12), rgba(244, 180, 0, 0.22));
  color: var(--lv-purple-900);
}

@media (hover: none) and (pointer: coarse) {
  .lv-case-card {
    min-height: auto;
  }

  .lv-case-card--featured {
    grid-row: auto;
    min-height: auto;
  }

  .lv-case-card__inner {
    display: grid;
    gap: 12px;
    transform: none !important;
    transition: none;
  }

  .lv-case-card__face {
    position: relative;
    min-height: 260px;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .lv-case-card--featured .lv-case-card__face {
    min-height: 300px;
  }

  .lv-case-card__face--back {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

.lv-section--process {
  padding-top: 60px;
}

.lv-process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.lv-process__intro {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 236, 255, 0.84));
}

.lv-process__intro h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  color: var(--lv-purple-900);
}

.lv-timeline {
  display: grid;
  gap: 14px;
  list-style: none;
}

.lv-timeline li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: var(--lv-radius-md);
  background: rgba(255, 255, 255, 0.86);
}

.lv-timeline li > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lv-purple-900), var(--lv-purple-600));
  color: rgba(255, 228, 134, 0.96);
  font-size: 1.2rem;
  font-weight: 800;
}

.lv-section--cta {
  padding-top: 18px;
  padding-bottom: 72px;
}

.lv-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 216, 255, 0.84));
  box-shadow: var(--lv-shadow-strong);
}

.lv-cta__copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.lv-cta__copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.lv-contact-list {
  display: grid;
  gap: 14px;
  align-content: center;
}

.lv-contact-item {
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(87, 36, 110, 0.12);
  background: rgba(87, 36, 110, 0.08);
}

.lv-contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lv-purple-600);
}

.lv-contact-item span {
  color: var(--lv-purple-900);
  font-weight: 700;
}

.lv-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(87, 36, 110, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--lv-purple-900);
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.lv-contact-link:hover,
.lv-contact-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(87, 36, 110, 0.36);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(37, 17, 47, 0.14);
  color: var(--lv-purple-700);
}

.lv-contact-link:focus-visible {
  outline: 2px solid rgba(106, 27, 154, 0.34);
  outline-offset: 2px;
}

.lv-contact-link--social {
  max-width: 100%;
}

.lv-contact-link--social > span:last-child {
  overflow-wrap: anywhere;
}

.lv-contact-item .lv-contact-link__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  flex-shrink: 0;
}

.lv-contact-link__icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.lv-footer {
  padding: 0 0 36px;
}

.lv-footer__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(87, 36, 110, 0.12);
}

.lv-footer__title {
  font-size: 1.12rem;
  color: var(--lv-purple-900);
}

.lv-footer__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

@media (max-width: 1100px) {
  .lv-header__capsule {
    flex-wrap: wrap;
  }

  .lv-header__actions {
    order: 2;
  }

  .lv-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .lv-hero__grid,
  .lv-process,
  .lv-cta {
    grid-template-columns: 1fr;
  }

  .lv-hero__grid {
    min-height: auto;
    gap: 24px;
  }

  .lv-hero__copy {
    padding: 120px 0 0;
  }

  .lv-hero__copy h1 {
    max-width: 100%;
  }

  .lv-hero__offer {
    grid-column: 1;
    grid-row: 2;
    margin-top: 8px;
  }

  .lv-hero__visual {
    grid-column: 1;
    grid-row: 3;
    min-height: 480px;
  }

  .lv-section--volunteer {
    padding-top: 26px;
    padding-bottom: 40px;
  }

  .lv-volunteer {
    padding: 26px 24px;
  }

  .lv-volunteer__copy {
    width: min(100%, 780px);
  }

  .lv-volunteer__copy h2 {
    max-width: none;
  }

  .lv-hero__image {
    width: min(660px, 88%);
    transform: translateX(5%);
  }

  .lv-about__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lv-about {
    gap: 30px;
  }

  .lv-about__row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lv-about__feature-grid,
  .lv-services__grid,
  .lv-card-grid,
  .lv-hero-panel__grid,
  .lv-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lv-service-card--featured {
    grid-column: span 2;
  }

  .lv-case-card {
    grid-column: span 1;
    min-height: 340px;
  }

  .lv-case-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }

  .lv-process__intro {
    position: static;
  }
}

@media (max-width: 760px), (max-width: 920px) and (hover: none) and (pointer: coarse) {
  .lv-container {
    width: min(1180px, calc(100% - 16px));
  }

  .lv-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 40;
    padding-top: max(env(safe-area-inset-top), 8px);
    pointer-events: none;
  }

  .lv-header .lv-container,
  .lv-header__capsule,
  .lv-header__menu-mobile,
  .lv-header__menu-dropdown {
    pointer-events: auto;
  }

  .lv-header__capsule {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .lv-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .lv-header__brand-mark {
    height: 38px;
  }

  .lv-header__brand-copy {
    min-width: 0;
  }

  .lv-header__brand-copy strong {
    display: block;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }

  .lv-header__brand-copy span {
    display: none;
  }

  .lv-header__nav {
    display: none;
  }

  .lv-header__actions {
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    margin-left: 0;
  }

  .lv-header__lang {
    width: auto;
    display: block;
  }

  .lv-header__lang .nm-lang__menu {
    min-width: min(220px, 100vw - 48px);
  }

  .lv-header__menu-mobile {
    position: relative;
    display: block;
    flex: 0 0 auto;
    align-self: center;
    transform: translateY(-3px);
  }

  .lv-header__menu-toggle {
    display: inline-grid;
    grid-template-rows: repeat(3, 2px);
    align-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 225, 0.78));
    box-shadow:
      0 14px 28px rgba(87, 36, 110, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    cursor: pointer;
    list-style: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .lv-header__menu-toggle::-webkit-details-marker {
    display: none;
  }

  .lv-header__menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--lv-purple-900);
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .lv-header__menu-mobile[open] .lv-header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .lv-header__menu-mobile[open] .lv-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .lv-header__menu-mobile[open] .lv-header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .lv-header__menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 6px;
    min-width: min(280px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 255, 0.96));
    box-shadow: 0 22px 44px rgba(37, 20, 54, 0.18);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .lv-header__menu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
    color: var(--lv-purple-900);
    font-size: 14px;
    font-weight: 700;
  }

  .lv-header__menu-link:hover,
  .lv-header__menu-link:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 225, 0.8));
    color: var(--lv-purple-700);
  }

  .lv-hero {
    position: relative;
    overflow: hidden;
    overflow: clip;
    height: 100vh;
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    margin-top: 0;
  }

  .lv-hero__grid {
    min-height: 100svh;
    grid-template-rows: auto auto 1fr;
    gap: 12px;
    padding-top: calc(env(safe-area-inset-top) + 84px);
  }

  .lv-hero__bg-image {
    object-position: 58% top;
  }

  .lv-hero__aside,
  .lv-card,
  .lv-hero-panel__card,
  .lv-process__intro,
  .lv-cta,
  .lv-timeline li,
  .lv-about__feature,
  .lv-service-card {
    padding: 24px;
    border-radius: 26px;
  }

  .lv-hero__copy {
    position: relative;
    z-index: 3;
    gap: 0;
    padding: 8px 0 0;
  }

  .lv-hero__copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 0.94;
  }

  .lv-hero__offer {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 22px 20px;
    margin-top: 4px;
  }

  .lv-hero__offer-list li {
    font-size: 14px;
  }

  .lv-hero__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 0;
    margin: 0;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    pointer-events: none;
  }

  .lv-hero__visual::before {
    inset: auto 50% 0 auto;
    width: 86%;
    height: 68%;
    transform: translateX(50%);
  }

  .lv-hero__visual::after {
    right: 50%;
    width: 92%;
    transform: translateX(50%);
  }

  .lv-hero__image {
    width: 100%;
    max-width: none;
    max-height: 72svh;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
  }

  .lv-section--volunteer {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .lv-volunteer {
    gap: 16px;
    padding: 22px 18px;
    border-radius: 28px;
  }

  .lv-volunteer::before {
    width: 176px;
    height: 176px;
    right: -44px;
    bottom: -62px;
  }

  .lv-volunteer__copy {
    gap: 12px;
  }

  .lv-volunteer__copy h2 {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
    line-height: 1.1;
  }

  .lv-volunteer__subtitle {
    min-height: 32px;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .lv-hero-panel {
    margin-top: 56px;
  }

  .lv-lead {
    font-size: 18px;
  }

  .lv-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lv-button {
    width: 100%;
  }

  .lv-hero-panel__grid,
  .lv-about__row,
  .lv-about__feature-grid,
  .lv-services__grid,
  .lv-card-grid,
  .lv-case-grid,
  .lv-about__points {
    grid-template-columns: 1fr;
  }

  .lv-about__lead,
  .lv-services__intro p:last-child {
    max-width: none;
  }

  .lv-about__heading h2 {
    width: auto;
    white-space: normal;
  }

  .lv-services__intro h2 {
    width: auto;
    white-space: normal;
  }

  .lv-showcase .lv-section-heading h2 {
    width: auto;
    white-space: normal;
  }

  .lv-about__media {
    border-radius: 24px;
  }

  .lv-about__strength-list li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
  }

  .lv-service-card--featured {
    grid-column: auto;
  }

  .lv-service-card--kite {
    min-height: 180px;
    padding: 22px 20px;
    border-radius: 26px;
  }

  .lv-service-card__kite {
    top: -14%;
    right: -6%;
    width: 66%;
    opacity: 0.18;
  }

  .lv-case-card {
    min-height: auto;
  }

  .lv-case-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .lv-case-card__inner {
    display: grid;
    gap: 12px;
    transform: none !important;
  }

  .lv-case-card__face {
    position: relative;
    min-height: 260px;
    padding: 22px 20px;
    border-radius: 26px;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .lv-case-card--featured .lv-case-card__face {
    min-height: 300px;
  }

  .lv-case-card__face--back {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .lv-timeline li {
    grid-template-columns: 1fr;
  }

  .lv-timeline li > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .lv-footer__inner,
  .lv-footer__meta {
    justify-items: start;
    align-items: flex-start;
  }

  .lv-footer__inner {
    flex-direction: column;
  }

  .lv-section,
  .lv-showcase {
    padding-block: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lv-hero__offer-list li,
  .lv-hero__offer-list li::before,
  .lv-hero__offer,
  .lv-hero__visual,
  .lv-service-card__kite {
    animation: none;
    opacity: 1;
  }

  .lv-button,
  .lv-header__link,
  .lv-volunteer {
    transition: none;
  }

  .lv-volunteer:hover,
  .lv-volunteer:focus-within {
    transform: none;
  }

  .lv-case-card__inner {
    display: grid;
    gap: 12px;
    transform: none !important;
    transition: none;
  }

  .lv-case-card__face {
    position: relative;
    min-height: 260px;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .lv-case-card__face--back {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* ========================================================================== */
/* Privacy Policy Page (/templates/page/privacy-policy.html) */
/* ========================================================================== */

.lv-section--privacy-policy {
  padding-top: 36px;
  padding-bottom: 72px;
}

.lv-privacy-policy {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
  color: var(--lv-ink);
  line-height: 1.72;
}

.lv-privacy-policy h1 {
  margin-bottom: 6px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--lv-purple-900);
}

.lv-privacy-policy h2 {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  color: var(--lv-purple-900);
}

.lv-privacy-policy ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 6px;
}

/* ========================================================================== */
/* Volunteer Registration Page (/templates/page/volunteer-registration.html) */
/* ========================================================================== */

.lv-registration-topbar {
  position: sticky;
  top: 14px;
  z-index: 32;
  padding-top: 16px;
}

.lv-registration-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 255, 0.82));
  box-shadow: 0 18px 36px rgba(55, 19, 77, 0.12);
  backdrop-filter: blur(12px) saturate(135%);
}

.lv-registration-topbar__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(87, 36, 110, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--lv-purple-900);
  font-size: 14px;
  font-weight: 800;
}

.lv-registration-topbar__home:hover,
.lv-registration-topbar__home:focus-visible {
  color: var(--lv-purple-700);
  background: rgba(255, 255, 255, 0.9);
}

.lv-registration-topbar__title {
  color: var(--lv-purple-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lv-registration-hero {
  position: relative;
  padding: clamp(42px, 6.5vw, 74px) 0 30px;
}

.lv-registration-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 180, 0, 0.22), rgba(244, 180, 0, 0) 34%),
    radial-gradient(circle at 100% 0%, rgba(122, 62, 165, 0.2), rgba(122, 62, 165, 0) 38%);
  pointer-events: none;
}

.lv-registration-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 255, 0.86));
  box-shadow: 0 24px 52px rgba(47, 18, 63, 0.14);
}

.lv-registration-hero__inner h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
  color: var(--lv-purple-900);
}

.lv-registration-hero__meta {
  color: var(--lv-muted);
  font-weight: 700;
}

.lv-section--registration-form {
  padding-top: 12px;
  padding-bottom: 72px;
}

.lv-registration-sheet {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(87, 36, 110, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 134, 0.12), rgba(255, 228, 134, 0) 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 255, 0.92));
  box-shadow: var(--lv-shadow);
}

.lv-registration-sheet__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.lv-registration-sheet__head h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  color: var(--lv-purple-900);
}

.lv-registration-sheet__note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(106, 27, 154, 0.2);
  border-radius: 999px;
  background: rgba(106, 27, 154, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: var(--lv-purple-700);
}

.lv-volunteer-form {
  display: grid;
  gap: 22px;
}

.lv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.lv-form-row {
  display: grid;
  gap: 8px;
}

.lv-form-row--full {
  grid-column: 1 / -1;
}

.lv-form-row label,
.lv-form-choice legend {
  font-size: 14px;
  font-weight: 700;
  color: var(--lv-purple-900);
}

.lv-form-row label span,
.lv-form-choice legend span,
.lv-form-consent span {
  color: var(--lv-purple-600);
}

.lv-volunteer-form input[type="text"],
.lv-volunteer-form input[type="email"],
.lv-volunteer-form input[type="tel"],
.lv-volunteer-form input[type="number"],
.lv-volunteer-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(87, 36, 110, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--lv-ink);
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.lv-volunteer-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lv-volunteer-form input:focus-visible,
.lv-volunteer-form textarea:focus-visible {
  outline: none;
  border-color: rgba(106, 27, 154, 0.5);
  box-shadow: 0 0 0 4px rgba(106, 27, 154, 0.12);
  background: var(--lv-white);
}

.lv-form-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.lv-form-choice legend {
  margin-bottom: 8px;
}

.lv-form-choices {
  display: grid;
  gap: 8px;
}

.lv-form-choices label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(87, 36, 110, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.lv-form-choices input[type="radio"],
.lv-form-consent input[type="checkbox"] {
  accent-color: var(--lv-purple-600);
}

.lv-form-choice > input[type="text"] {
  margin-top: 10px;
}

.lv-form-choices--inline {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.lv-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(87, 36, 110, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.lv-volunteer-form__submit {
  justify-self: start;
  min-width: min(100%, 320px);
}

@media (max-width: 1100px) {
  .lv-registration-topbar {
    top: 10px;
    padding-top: 12px;
  }

  .lv-registration-hero {
    padding-top: clamp(34px, 5.6vw, 58px);
  }

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

@media (max-width: 760px), (max-width: 920px) and (hover: none) and (pointer: coarse) {
  .lv-registration-topbar {
    top: max(env(safe-area-inset-top), 8px);
    padding-top: 8px;
  }

  .lv-registration-topbar__inner {
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 18px;
  }

  .lv-registration-topbar__home {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .lv-registration-topbar__title {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .lv-registration-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lv-registration-hero__inner,
  .lv-registration-sheet {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .lv-registration-sheet__head h2 {
    font-size: clamp(1.3rem, 6.4vw, 1.7rem);
  }

  .lv-form-row label,
  .lv-form-choice legend {
    font-size: 13px;
  }

  .lv-form-choices--inline {
    grid-template-columns: 1fr;
  }

  .lv-volunteer-form__submit {
    width: 100%;
    justify-self: stretch;
  }
}
