:root {
  --surface: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(18, 22, 31, 0.08);
  --border-strong: rgba(18, 22, 31, 0.14);
  --ink: #161b24;
  --muted: #616a79;
  --blue-strong: #4f95ff;
  --shadow-md: 0 20px 48px rgba(112, 125, 150, 0.12);
  --shadow-sm: 0 10px 24px rgba(112, 125, 150, 0.09);
  --radius-xl: clamp(1.75rem, 2.4vw, 2.5rem);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --site-max: 1440px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Raleway", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: url("/img/bg.webp") center / cover no-repeat;
  overflow-x: clip;
}

::selection {
  color: var(--ink);
  background: rgba(110, 169, 255, 0.32);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 2px solid var(--blue-strong);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page {
  position: relative;
  isolation: isolate;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--site-max));
  margin-inline: auto;
}

.reveal-delay-1 {
  --reveal-delay: 90ms;
}

.reveal-delay-2 {
  --reveal-delay: 180ms;
}

.reveal-delay-3 {
  --reveal-delay: 270ms;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].reveal-pending.is-visible {
  opacity: 1;
  transform: none;
}

.hero,
.benefits,
.footer {
  scroll-margin-top: 1.5rem;
}

.hero {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0 clamp(2.5rem, 5vw, 4.25rem);
  background: url("/img/main-hero.webp") center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inline-size: clamp(14rem, 22vw, 22rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  inset-inline-start: max(-2rem, 2vw);
  background: rgba(94, 174, 255, 0.32);
}

.hero::after {
  inset-inline-end: max(-3rem, 1vw);
  background: rgba(217, 255, 85, 0.36);
}

.hero__shell {
  width: min(calc(100% - 2rem), var(--site-max));
  margin-inline: auto;
}

.hero__panel {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2rem);
  min-height: clamp(35rem, 58vw, 51rem);
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
}

@media (max-width: 56rem) {
  .hero__panel {
    align-items: center;
  }
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.65),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 14%,
      rgba(223, 255, 140, 0.3),
      transparent 18%
    );
  pointer-events: none;
}

.hero__topbar,
.hero__copy,
.hero__meta {
  position: absolute;
  z-index: 1;
}

.hero__topbar {
  inset-block-start: clamp(1.4rem, 2vw, 2rem);
  inset-inline: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-inline-size: 0;
}

.brand img {
  inline-size: 2rem;
  block-size: 2rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  inline-size: 3rem;
  block-size: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  z-index: 41;
}

.nav-toggle span {
  position: absolute;
  inline-size: 2.2rem;
  block-size: 0.1875rem;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-0.55rem);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(0.55rem);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.95rem 1.85rem;
  z-index: 40;
}

.nav__link {
  position: relative;
  padding-block: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 27, 36, 0.82);
  transition: color 220ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -0.3rem;
  block-size: 2px;
  border-radius: 999px;
  background: rgba(79, 149, 255, 0.78);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav__link:hover,
.nav__link.is-current {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link.is-current::after {
  transform: scaleX(1);
}

.hero__copy {
  inset-block-start: clamp(6rem, 11vw, 8.75rem);
  inset-inline-start: clamp(1.25rem, 2.8vw, 2.9rem);
  max-inline-size: min(26rem, 32%);
}

.hero__title {
  margin: 0;
  font-size: clamp(1.35rem, 0.95rem + 1.1vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero__cta-card {
  inset-inline-start: 50%;
  inset-block-end: clamp(4.5rem, 7vw, 6rem);
  width: 100%;
  max-width: 624px;
  padding: 0.75rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.55rem;
  background: rgba(250, 251, 255, 0.56);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  text-align: center;
  transform: translateX(-50%);
}

@media (max-width: 56rem) {
  .hero__cta-card {
    inset-block-end: 11.3rem;
    width: calc(100% - 2rem);
    max-width: none;
  }
}

.hero__cta-kicker {
  margin: 0 0 0.8rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 51, 66, 0.84);
}

.hero__cta-title {
  margin: 0;
  font-size: clamp(1.7rem, 1.15rem + 1.9vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-inline-size: min(100%, 9rem);
  margin-top: 0.85rem;
  padding: 0.86rem 1.65rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    filter 260ms var(--ease-soft);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #93c9fb 0%, #78aef3 100%);
  box-shadow: 0 18px 34px rgba(74, 140, 224, 0.28);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(74, 140, 224, 0.34);
  background: #498fe3;
}

.hero__meta {
  inset-inline-end: clamp(1.25rem, 2.8vw, 2.8rem);
  inset-block-end: clamp(2rem, 3.4vw, 3rem);
  max-inline-size: 14rem;
  text-align: right;
  color: var(--ink);
}

.hero__meta-date,
.hero__meta-place {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__meta-date {
  margin-bottom: 0.55rem;
  font-weight: 800;
}

.hero__meta-place {
  color: rgba(22, 27, 36, 0.8);
}

.benefits {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.benefits__inner {
  container-type: inline-size;
}

.section-heading {
  max-inline-size: 75rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0.8rem 0 0;
  max-inline-size: 55rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.9rem + 0.3vw, 1.08rem);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.95rem, 2vw, 1.3rem);
}

.benefit-card {
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.benefit-card__icon {
  width: 52px;
  height: 40px;
}

.benefit-card__icon img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.28vw, 1.28rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.benefit-card h3 span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.benefit-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.collection {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.collection__inner {
  position: relative;
}

.collection__heading {
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
}

.collection__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 1.7vw, 2.9rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.collection__heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.88rem + 0.2vw, 1.05rem);
}

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

.collection-card {
  position: relative;
  min-height: 13.2rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.collection-card--small {
  grid-column: span 2;
}

.collection-card--wide {
  grid-column: span 3;
}

.collection-card__badge {
  position: absolute;
  inset-block-start: 0.85rem;
  inset-inline-end: 0.85rem;
}

.collection-card__media {
  display: flex;
  align-items: flex-end;
  min-height: 5.2rem;
  margin-bottom: 1rem;
}

.collection-card__body h3 {
  margin: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.22vw, 1.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.collection-card__body p {
  margin: 0.45rem 0 0;
  color: rgba(22, 27, 36, 0.84);
  font-size: 0.95rem;
  line-height: 1.3;
}

.collection__note {
  margin: 0.95rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.reasons,
.location,
.faq,
.charity,
.gallery {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.closing-cta {
  padding: 0 0 1.75rem;
}

.reasons__heading,
.location__heading,
.faq__heading,
.charity__heading,
.gallery__heading {
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
}

.reasons__heading h2,
.location__heading h2,
.faq__heading h2,
.charity__heading h2,
.gallery__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 1.7vw, 2.9rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.reasons__heading p,
.location__heading p,
.faq__heading p,
.charity__heading p,
.gallery__heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.88rem + 0.2vw, 1.05rem);
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.reason-card,
.faq-card {
  padding: 1rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.reason-card__icon {
  inline-size: 1.45rem;
  block-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.reason-card h3,
.faq-card h3,
.location-card__group h3 {
  margin: 0;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.reason-card p,
.faq-card p,
.location-card__group p {
  margin: 0.4rem 0 0;
  color: rgba(22, 27, 36, 0.8);
  font-size: 0.95rem;
  line-height: 1.3;
}

.reasons__photo {
  grid-column: 4;
  grid-row: 1 / span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.reasons__photo img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.85fr);
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.location-card__map {
  overflow: hidden;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
}

.location-card__map img {
  inline-size: 100%;
  block-size: auto;
  object-fit: cover;
}

.location-card__content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.location-card__group p {
  line-height: 1.35;
}

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

.faq-card__question {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.faq-card__question img {
  inline-size: 1.15rem;
  block-size: 1.15rem;
  margin-top: 0.08rem;
  flex: 0 0 auto;
}

.charity-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.9fr);
  gap: 1.15rem;
  padding: 1.3rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.charity-card__media {
  overflow: hidden;
  border-radius: 1.2rem;
}

.charity-card__media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.charity-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.charity-card__content p {
  margin: 0;
  color: rgba(22, 27, 36, 0.82);
  font-size: 0.96rem;
  line-height: 1.34;
}

.charity-card__button {
  align-self: flex-start;
  min-inline-size: min(100%, 14rem);
  margin-top: 0.2rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr 0.5fr;
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.about-page__intro {
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.policy-page__intro {
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.about-page__shell,
.policy-page__shell,
.about-impact__card,
.accounted-card {
  position: relative;
}

.about-page__shell,
.policy-page__shell {
  padding: clamp(1.35rem, 2.5vw, 2.25rem);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    radial-gradient(circle at 6% 6%, rgba(133, 200, 255, 0.3), transparent 26%),
    radial-gradient(
      circle at 92% 54%,
      rgba(220, 255, 117, 0.42),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.54)
    );
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.about-page__shell::after,
.policy-page__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.45),
      transparent 16%
    ),
    radial-gradient(
      circle at 84% 74%,
      rgba(255, 244, 152, 0.24),
      transparent 18%
    );
  pointer-events: none;
}

.page-topbar,
.about-page__lead,
.about-story-card,
.policy-page__lead,
.policy-card {
  position: relative;
  z-index: 1;
}

.page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
  z-index: 30;
}

.about-page__lead {
  max-inline-size: 67rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.policy-page__lead {
  max-inline-size: 67rem;
  margin-bottom: clamp(1.35rem, 2.5vw, 1.9rem);
}

.about-page__lead h1 {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.policy-page__lead h1 {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-page__lead p {
  margin: 0.55rem 0 0;
  color: rgba(22, 27, 36, 0.76);
  font-size: clamp(0.98rem, 0.92rem + 0.18vw, 1.06rem);
}

.policy-card {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.policy-content {
  max-inline-size: 72rem;
  color: rgba(22, 27, 36, 0.82);
  font-size: 0.98rem;
  line-height: 1.38;
}

.policy-content p {
  margin: 0;
}

.policy-content p + p,
.policy-content p + ul,
.policy-content ul + p,
.policy-content ul + ul {
  margin-top: 0.85rem;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.1rem;
}

.policy-content li + li {
  margin-top: 0.1rem;
}

.policy-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.about-story-card,
.about-impact__card {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.about-story-card {
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.92fr);
  align-items: stretch;
}

.about-story-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  min-height: 21rem;
}

.about-story-card__media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.about-story-card__caption {
  position: absolute;
  inset-inline: clamp(1rem, 2vw, 1.5rem);
  inset-block-end: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 0.93rem + 0.35vw, 1.28rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-story-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(0.25rem, 1vw, 0.5rem) 0;
}

.about-story-card__content h2,
.about-impact__heading h2,
.accounted__heading h2 {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 1.7vw, 2.9rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.about-story-card__content h2 {
  font-size: clamp(1.4rem, 1.16rem + 0.85vw, 2rem);
}

.about-story-card__content p,
.about-impact__heading p,
.accounted__heading p {
  margin: 0;
  color: rgba(22, 27, 36, 0.8);
  font-size: 0.98rem;
  line-height: 1.35;
}

.about-impact__heading,
.accounted__heading {
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
}

.about-impact__card {
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 1fr);
  align-items: start;
}

.about-impact__bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-meter {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.impact-meter__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.impact-meter__topline h3,
.about-impact__content h3,
.about-impact__list h4,
.accounted-card h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.impact-meter__topline h3,
.about-impact__content h3,
.accounted-card h3 {
  font-size: clamp(1.05rem, 0.98rem + 0.24vw, 1.2rem);
  line-height: 1.15;
}

.impact-meter__topline span {
  color: rgba(22, 27, 36, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.impact-meter__track {
  overflow: hidden;
  block-size: 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(80, 80, 80, 0.55);
}

.impact-meter__track span {
  display: block;
  inline-size: var(--impact-value);
  block-size: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fc7ff 0%, #7aaef3 100%);
}

.about-impact__note,
.about-impact__list p,
.accounted-card p {
  margin: 0;
  color: rgba(22, 27, 36, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
}

.about-impact__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-impact__list {
  display: grid;
  gap: 1rem;
}

.about-impact__list h4 {
  font-size: 1rem;
  line-height: 1.2;
}

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

.accounted-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.accounted-card img {
  inline-size: 1.35rem;
  block-size: 1.35rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.about-page .footer,
.policy-page .footer {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
}

.closing-cta__card {
  padding: clamp(2rem, 4vw, 2.8rem) 1.25rem;
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  text-align: center;
}

.closing-cta__card h2 {
  margin: 0;
  font-size: clamp(2rem, 1.45rem + 1.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.closing-cta__date,
.closing-cta__note,
.closing-cta__follow {
  margin: 0;
}

.closing-cta__date {
  margin-top: 0.95rem;
  font-size: clamp(1rem, 0.92rem + 0.2vw, 1.1rem);
  font-weight: 700;
}

.closing-cta__note,
.closing-cta__follow {
  color: rgba(22, 27, 36, 0.72);
  font-size: 0.95rem;
}

.closing-cta__note {
  margin-top: 0.55rem;
}

.closing-cta__button {
  min-inline-size: min(100%, 11rem);
  margin-top: 1rem;
}

.closing-cta__socials,
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.closing-cta__socials {
  justify-content: center;
  margin-top: 1rem;
}

.closing-cta__socials a,
.footer__socials a {
  display: inline-flex;
  transition: transform 220ms ease;
}

.closing-cta__socials a:hover,
.footer__socials a:hover {
  transform: translateY(-2px);
}

.closing-cta__socials img,
.footer__socials img {
  inline-size: 2rem;
  block-size: 2rem;
}

.closing-cta__follow {
  margin-top: 0.9rem;
}

.footer {
  padding: 1.75rem 0 1.9rem;
  border-top: 1px solid rgba(22, 27, 36, 0.08);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
}

.footer__brand-top {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer__brand-top img {
  inline-size: 1.9rem;
  block-size: 1.9rem;
}

.footer__brand-top h2 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer__brand-line {
  display: block;
  inline-size: min(100%, 10rem);
  block-size: 1px;
  margin: 0.85rem 0 0.9rem;
  background: rgba(22, 27, 36, 0.2);
}

.footer__brand-copy {
  max-inline-size: 11rem;
  margin: 0;
  color: rgba(22, 27, 36, 0.78);
  font-size: 0.94rem;
  line-height: 1.3;
}

.footer__age {
  inline-size: 1.85rem;
  block-size: 1.85rem;
  margin-top: 1rem;
}

.footer__nav h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a,
.footer__mail span {
  color: rgba(22, 27, 36, 0.82);
  font-size: 0.96rem;
  line-height: 1.25;
}

.footer__connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer__mail img {
  inline-size: 1.5rem;
  block-size: 1.5rem;
}

@media (max-width: 72rem) {
  .hero__panel {
    min-height: clamp(34rem, 72vw, 48rem);
    background-position: 58% center;
  }

  .hero__copy {
    max-inline-size: 22rem;
  }

  .hero__cta-card {
    inset-block-end: 4rem;
    width: min(100% - 3rem, 34rem);
  }

  .hero__meta {
    max-inline-size: 11rem;
  }
}

@media (max-width: 56rem) {
  .hero__panel {
    min-height: clamp(42rem, 122vw, 55rem);
    padding: 1.25rem;
    background-position: 67% center;
    overflow: visible;
  }

  .about-page__shell,
  .policy-page__shell {
    overflow: visible;
  }

  .hero__topbar {
    inset-block-start: 1.1rem;
    inset-inline: 1.1rem;
  }

  .brand img {
    inline-size: 2.1rem;
    block-size: 2.1rem;
  }

  .brand__text {
    font-size: clamp(0.78rem, 2.7vw, 0.95rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset-block-start: calc(100% + 0.75rem);
    inset-inline-end: 0;
    flex-direction: column;
    align-items: flex-start;
    min-inline-size: min(16rem, calc(100vw - 3rem));
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #93c9fb 0%, #78aef3 100%);
    box-shadow: 0 24px 44px rgba(5, 8, 14, 0.34);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 0.78rem;
  }

  .nav.is-open {
    z-index: 40;
  }

  .nav__link {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav__link:hover,
  .nav__link.is-current {
    color: #ffffff;
  }

  .nav__link::after {
    background: rgba(255, 255, 255, 0.86);
  }

  .hero__copy {
    inset-block-start: 5.9rem;
    inset-inline-start: 1.1rem;
    max-inline-size: min(18rem, calc(100% - 3rem));
  }

  .hero__title {
    font-size: clamp(1.45rem, 2.7vw, 1.2rem);
    line-height: 1.06;
  }

  .hero__cta-card {
    inset-block-end: 11.3rem;
    width: calc(100% - 2rem);
    padding: 0.9rem 1rem 1.1rem;
    border-radius: 1.7rem;
  }

  .hero__cta-kicker {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 0.95rem;
  }

  .hero__cta-title {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
  }

  .button {
    min-inline-size: 100%;
    margin-top: 1.05rem;
    padding: 1rem 1.5rem;
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .button--primary {
    border: 4px solid rgba(255, 255, 255, 0.92);
  }

  .hero__meta {
    inset-inline-end: 1.3rem;
    inset-block-end: 2rem;
    max-inline-size: 13.5rem;
  }
}

@media (max-width: 34rem) {
  .hero__panel {
    min-height: 41.5rem;
    padding: 0.95rem;
    background-position: 71% center;
  }

  .brand__text {
    font-size: 0.72rem;
  }

  .nav-toggle {
    inline-size: 2.75rem;
    block-size: 2.75rem;
  }

  .nav-toggle span {
    inline-size: 2rem;
  }

  .hero__copy {
    inset-block-start: 4.1rem;
    max-inline-size: 15rem;
  }

  .hero__cta-card {
    inset-block-end: 10.2rem;
  }

  .hero__cta-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero__meta-date,
  .hero__meta-place {
    font-size: 0.72rem;
  }
}

@media (max-width: 62rem) {
  .collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card--small,
  .collection-card--wide {
    grid-column: span 1;
  }

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

  .reasons__photo {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

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

  .charity-card {
    grid-template-columns: 1fr;
  }

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

  .gallery__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .about-story-card,
  .about-impact__card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 40rem) {
  .collection__grid {
    grid-auto-columns: minmax(17.25rem, 86%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0.1rem 0.25rem 0.7rem 0.1rem;
    scroll-padding-inline: 0.1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .collection__grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card--small,
  .collection-card--wide {
    grid-column: auto;
  }

  .collection-card {
    min-height: 12rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reasons__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 1rem;
  }

  .charity-card {
    padding: 1rem;
  }

  .charity-card__button {
    align-self: stretch;
  }

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

  .gallery__item,
  .gallery__item--large {
    aspect-ratio: 16 / 10;
  }

  .about-page__shell {
    padding: 1rem;
  }

  .policy-page__shell {
    padding: 1rem;
  }

  .page-topbar {
    margin-bottom: 1.2rem;
  }

  .about-story-card__media {
    min-height: 16.5rem;
  }

  .about-story-card__caption {
    font-size: 0.95rem;
  }

  .impact-meter__topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

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

  .closing-cta__button {
    min-inline-size: min(100%, 13rem);
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@container (max-width: 62rem) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container (max-width: 34rem) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal].reveal-pending {
    opacity: 1;
    transform: none;
  }

  .button--primary:hover,
  .benefit-card:hover {
    transform: none;
  }
}

.pad-block {
  padding-block: 40px;
}

/* ——— Partners page ——— */
body:has(.partners-page) {
  background: linear-gradient(
    125deg,
    #cfe8ff 0%,
    #eef6ff 38%,
    #f4fbf7 62%,
    #dff3c8 100%
  );
  background-attachment: fixed;
}

.partners-page__intro {
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.partners-page__shell {
  position: relative;
  padding: clamp(1.35rem, 2.5vw, 2.25rem);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    radial-gradient(
      circle at 6% 6%,
      rgba(133, 200, 255, 0.28),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 54%,
      rgba(220, 255, 117, 0.38),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.58)
    );
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.partners-page__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.45),
      transparent 16%
    ),
    radial-gradient(
      circle at 84% 74%,
      rgba(255, 244, 152, 0.22),
      transparent 18%
    );
  pointer-events: none;
}

.partners-hero,
.partners-offers-grid {
  position: relative;
  z-index: 2;
}

.partners-hero {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.partners-hero__title {
  margin: 0;
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.partners-hero__lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.88rem + 0.22vw, 1.08rem);
  line-height: 1.45;
}

.partners-offers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.partner-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 0.55rem 0.75rem;
  align-items: start;
  min-height: 100%;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(147, 201, 251, 0.55);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(112, 125, 150, 0.12);
}

.partner-offer-card__badge {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  padding: 0.28rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a3d66;
  background: linear-gradient(180deg, #d4ebff 0%, #b8dfff 100%);
}

.partner-offer-card__live {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(22, 27, 36, 0.55);
  white-space: nowrap;
}

.partner-offer-card__live--compact {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

.partner-offer-card__live--verbose {
  display: none;
}

.partner-offer-card__live-mark {
  color: rgba(22, 27, 36, 0.42);
  font-weight: 700;
}

.partner-offer-card__live-num {
  font-weight: 700;
  color: rgba(22, 27, 36, 0.78);
}

.partner-offer-card__logo-wrap {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.partner-offer-card__logo-wrap p {
  margin: 0;
  color: #498fe3;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.partner-offer-card__logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-offer-card__offer {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  text-align: right;
  font-size: clamp(1.02rem, 0.72rem + 0.45vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.partner-offer-card__rating {
  grid-column: 1;
  grid-row: 4;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.partner-offer-card__score {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.partner-offer-card__stars {
  display: flex;
  gap: 0.08rem;
}

.partner-offer-card__stars img {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.partner-offer-card__cta {
  grid-column: 2;
  grid-row: 3;
  align-self: stretch;
  width: 100%;
  margin: 0;
  padding: 10px;
  font-size: 16px;
  height: fit-content;
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.partner-offer-card__payments {
  grid-column: 1 / span 2;
  grid-row: 5;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.partner-offer-card__payments img {
  border-radius: 50%;
}

@media (min-width: 36rem) {
  .partner-offer-card__stars img {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 48rem) {
  .partner-offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1rem 1.1rem;
  }

  .partner-offer-card > * {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    align-self: auto;
    max-width: 100%;
  }

  .partner-offer-card__badge {
    align-self: flex-start;
    margin: 0 0 0.15rem;
    width: auto;
  }

  .partner-offer-card__live--compact {
    display: none;
  }

  .partner-offer-card__live--verbose {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    font-size: 0.78rem;
    color: rgba(22, 27, 36, 0.62);
    order: 5;
  }

  .partner-offer-card__logo-wrap {
    align-items: center;
    margin-bottom: 0.15rem;
    order: 2;
  }

  .partner-offer-card__offer {
    text-align: center;
    font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.35rem);
    order: 3;
  }

  .partner-offer-card__rating {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin: 0.1rem 0 0.15rem;
    order: 4;
  }

  .partner-offer-card__score {
    font-size: 2.35rem;
  }

  .partner-offer-card__cta {
    width: 100%;
    max-width: 100%;
    margin: 0;
    order: 6;
  }

  .partner-offer-card__payments {
    justify-content: center;
    width: 100%;
    padding-top: 0.65rem;
    margin-top: 0.15rem;
    border-top: 1px solid rgba(220, 226, 239, 0.95);
    order: 7;
  }
}

.partners-story__heading {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.partners-story__heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.partners-story__subtitle {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 0.9rem + 0.18vw, 1.06rem);
}

.partners-story__card {
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  margin-inline: auto;
}

.partners-story__card p {
  margin: 0;
  color: rgba(22, 27, 36, 0.84);
  font-size: 0.98rem;
  line-height: 1.45;
}

.partners-story__card p + p,
.partners-story__card p + h3 {
  margin-top: 1rem;
}

.partners-story__card h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: clamp(1.05rem, 0.98rem + 0.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.partners-story__card h3:first-of-type {
  margin-top: 1rem;
}

.partners-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.partners-trust__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition:
    opacity 200ms ease,
    filter 200ms ease;
}

.partners-trust__link:hover {
  filter: grayscale(0.35);
}

.partners-trust__link--age {
  filter: none;
  opacity: 1;
}

.partners-disclaimer-block__card {
  margin-inline: auto;
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
  border-radius: 1.45rem;
  background: linear-gradient(135deg, #5a9ae8 0%, #3d7fd4 55%, #2f6fc4 100%);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(47, 111, 196, 0.28);
}

.partners-disclaimer-block__card h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 800;
  color: #ffffff;
}

.partners-disclaimer-block__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.partners-disclaimer-block__card p + p {
  margin-top: 0.65rem;
}

.partners-disclaimer-block__card a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.partners-disclaimer-block__note {
  margin-top: 0.85rem !important;
  font-weight: 700;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em;
}

.partners-page .footer {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 62rem) {
  .partners-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .partners-offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 56rem) {
  .partners-page__shell {
    overflow: visible;
  }
}

/* ——— Tent / trust page ——— */
body:has(.tent-page) {
  background: linear-gradient(
    125deg,
    #cfe8ff 0%,
    #eef6ff 38%,
    #f4fbf7 62%,
    #dff3c8 100%
  );
  background-attachment: fixed;
}

.tent-page__intro {
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.tent-page__shell {
  position: relative;
  padding: clamp(1.35rem, 2.5vw, 2.25rem);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    radial-gradient(
      circle at 6% 6%,
      rgba(133, 200, 255, 0.28),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 54%,
      rgba(220, 255, 117, 0.38),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.58)
    );
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.tent-page__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.45),
      transparent 16%
    ),
    radial-gradient(
      circle at 84% 74%,
      rgba(255, 244, 152, 0.22),
      transparent 18%
    );
  pointer-events: none;
}


.tent-hero,
.tent-game-card {
  position: relative;
  z-index: 2;
}

.tent-hero {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.tent-hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 1.05rem + 2.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.tent-hero__lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.88rem + 0.22vw, 1.08rem);
  line-height: 1.45;
}

.tent-game-card {
  max-width: min(56rem, 100%);
  margin-inline: auto;
  padding: clamp(0.85rem, 2vw, 1.25rem);
  border: 1px solid rgba(220, 226, 239, 0.95);
  border-radius: 1.45rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(112, 125, 150, 0.14);
}

.tent-game-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.05rem;
  background: rgba(22, 27, 36, 0.06);
}

.tent-game-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tent-story__heading {
  max-width: 52rem;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.tent-story__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 1.15rem + 1.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tent-story__kicker {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.9rem + 0.2vw, 1.08rem);
  font-weight: 500;
}

.tent-story__card {
  margin-inline: auto;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  border: 1px solid #fefefe99;
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.tent-story__card h3 {
  margin: 1.15rem 0 0.45rem;
  font-size: clamp(1.05rem, 0.98rem + 0.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tent-story__card h3:first-of-type {
  margin-top: 0;
}

.tent-story__card p {
  margin: 0;
  color: rgba(22, 27, 36, 0.84);
  font-size: 0.98rem;
  line-height: 1.45;
}

.tent-story__card p + h3 {
  margin-top: 1.1rem;
}

.tent-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-inline: auto;
  padding: 0.75rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid #fefefe99;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.tent-trust__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  filter: grayscale(1);
  transition:
    opacity 200ms ease,
    filter 200ms ease;
}

.tent-trust__link:hover {
  opacity: 1;
  filter: grayscale(0.25);
}

.tent-trust__link--age {
  filter: none;
  opacity: 1;
}

.tent-page__footer.footer {
  margin-top: 0.5rem;
  background: #ffffff;
}

.footer__brand-copy--short {
  max-width: 16rem;
}

@media (max-width: 56rem) {
  .tent-page__shell {
    overflow: visible;
  }
}
