/* ---------- Base ---------- */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #FBFAF8;
  --surface: #FFFFFF;
  --ink: #1F1A1C;
  --ink-2: #5A5256;
  --ink-3: #8C8388;
  --line: #ECE7EA;
  --line-2: #DCD4D8;
  --pink-soft: #FCEEF3;
  --pink-warm: #F6E5EC;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 10, 15, 0.04), 0 2px 8px rgba(20, 10, 15, 0.04);
  --shadow-md: 0 2px 6px rgba(20, 10, 15, 0.05), 0 16px 40px -12px rgba(120, 40, 70, 0.12);
  --shadow-photo: 0 1px 2px rgba(0,0,0,.06), 0 20px 50px -16px rgba(150, 60, 100, 0.32), 0 30px 80px -20px rgba(180, 80, 120, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 44px 24px;
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 0;
  min-height: 56px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
  line-height: 0;
}
.nav-brand img {
  height: 88px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(216, 111, 142, 0.18));
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-brand:hover img { transform: rotate(-3deg) scale(1.03); }
.brand-spacer { display: block; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 120ms;
}
.nav-link:hover { color: var(--ink); }
.nav-link--cta {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.nav-link--cta:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: 8px 0 88px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.headline {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 8px 0 22px;
  text-wrap: balance;
}
.headline em {
  font-style: italic;
  font-weight: 500;
  color: #C2185B;
}

.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.lede strong { color: var(--ink); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .meta-num {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta-item .meta-lbl {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* ---------- Photo stack ---------- */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.photo-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
}
.photo {
  position: absolute;
  margin: 0;
  background: white;
  padding: 14px 14px 56px;
  border-radius: 6px;
  box-shadow: var(--shadow-photo);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}
.photo figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: "Fraunces", serif;
}
.photo-handle {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.photo-time {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.photo--back {
  top: 0%;
  right: -2%;
  width: 62%;
  transform: rotate(calc(5deg * var(--tilt, 1)));
  z-index: 1;
}
.photo--front {
  bottom: 0%;
  left: -2%;
  width: 70%;
  transform: rotate(calc(-4deg * var(--tilt, 1)));
  z-index: 2;
}
.photo--front:hover { transform: rotate(calc(-2deg * var(--tilt, 1))) translateY(-4px); }
.photo--back:hover { transform: rotate(calc(3deg * var(--tilt, 1))) translateY(-4px); }
.photo:hover { z-index: 10; }

.photo--side {
  top: 24%;
  left: -14%;
  width: 50%;
  transform: rotate(calc(-12deg * var(--tilt, 1)));
  z-index: 0;
}
.photo--side:hover { transform: rotate(calc(-9deg * var(--tilt, 1))) translateY(-4px); }

.live-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(31, 26, 28, 0.86);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4D6D;
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 77, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0); }
}

.photo-sticker {
  position: absolute;
  right: -8px;
  bottom: 32%;
  z-index: 20;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: white;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-style: italic;
  rotate: 14deg;
  box-shadow: var(--shadow-sm);
}
.photo-sticker span { font-size: 30px; line-height: 1; letter-spacing: -0.03em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: filter 140ms, transform 80ms, background 140ms, border-color 140ms;
}
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--primary {
  color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 8px 20px -6px rgba(216,111,142,0.45);
}
.btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: white;
}
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- Section ---------- */
.section { padding: 44px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  line-height: 1.02;
}
.section-note {
  color: var(--ink-3);
  font-size: 14px;
  margin: 0;
  padding-bottom: 8px;
}
.section-note a {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color 140ms, border-color 140ms;
}
.section-note a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pink-soft);
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
.tile-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 320ms ease;
}
.tile-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(252, 238, 243, 0.0) 60%, rgba(252, 238, 243, 0.55) 100%);
  transition: opacity 320ms ease;
}
.tile.is-revealed .tile-veil { opacity: 0.25; }
.tile.is-revealed .tile-lock {
  background: rgba(229, 99, 138, 0.92);
}
.tile-lock {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  background: rgba(31, 26, 28, 0.82);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.tile-meta { padding: 14px 16px 16px; }
.tile-cap { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.tile-sub { font-size: 12px; color: var(--ink-3); }

/* ---------- Press / award section ---------- */
.press {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0 36px;
  position: relative;
}

.press-cover-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  justify-self: center;
}
.press-cover {
  display: block;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(-3.4deg);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 24px 50px -16px rgba(60, 20, 35, 0.32),
    0 40px 80px -20px rgba(120, 40, 70, 0.18);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.press-cover:hover { transform: rotate(-1.4deg) translateY(-4px); }
.press-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.press-tape {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-58%) rotate(-6deg);
  width: 96px;
  height: 26px;
  background: linear-gradient(180deg, rgba(255, 240, 200, 0.85), rgba(245, 220, 170, 0.7));
  border-left: 1px dashed rgba(120, 90, 50, 0.25);
  border-right: 1px dashed rgba(120, 90, 50, 0.25);
  box-shadow: 0 2px 6px rgba(60, 30, 10, 0.12);
  z-index: 2;
}
.press-medal {
  position: absolute;
  right: -38px;
  bottom: -36px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: white;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  rotate: 10deg;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.1),
    0 12px 24px -8px rgba(120, 40, 70, 0.25);
  z-index: 3;
}
.press-medal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.5;
}

.press-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 520px;
}
.press-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.press-stars {
  display: flex;
  gap: 4px;
}
.press-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 4px 0 0;
  text-wrap: balance;
  position: relative;
}
.press-quote::before {
  content: "“";
  position: absolute;
  left: -0.45em;
  top: -0.1em;
  font-weight: 400;
  color: var(--ink-3);
  opacity: 0.55;
}
.press-attribution {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.press-issue-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: white;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.press-issue-tag svg { color: var(--ink-3); }

@media (max-width: 820px) {
  .press { grid-template-columns: 1fr; gap: 36px; padding: 36px 0 24px; }
  .press-cover-wrap { max-width: 260px; }
  .press-medal { width: 76px; height: 76px; font-size: 11px; right: -6px; }
}

/* ---------- Press / award section ---------- end */
.subscribe {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 16px 0 36px;
}
.sub-body {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 520px;
  margin: 18px 0 28px;
}
.sub-body strong { color: var(--ink); font-weight: 600; }
.perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.perk-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Auth card ---------- */
.auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  scroll-margin-top: 24px;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F4F0F2;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 22px;
}
.auth-tab {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all 160ms;
}
.auth-tab.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.tiers { display: flex; flex-direction: column; gap: 8px; }
.tier {
  position: relative; display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 140ms;
  background: white;
}
.tier:hover { border-color: var(--line-2); }
.tier input { position: absolute; opacity: 0; pointer-events: none; }
.tier-head { display: flex; justify-content: space-between; align-items: baseline; }
.tier-label { font-weight: 600; font-size: 14px; }
.tier-price {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
}
.tier-price span {
  font-size: 12px; color: var(--ink-3);
  font-family: "Inter", sans-serif; font-weight: 500; margin-left: 2px;
}
.tier-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.field input {
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 140ms, box-shadow 140ms;
}
.field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(31, 26, 28, 0.06);
}
.consent {
  display: grid; grid-template-columns: 18px 1fr;
  gap: 10px; font-size: 12.5px;
  color: var(--ink-2); line-height: 1.45;
  padding: 2px 0;
}
.consent input { margin-top: 2px; accent-color: var(--ink); }
.consent strong { color: var(--ink); font-weight: 600; }
.auth-submit {
  margin-top: 4px;
  padding: 13px 16px;
  color: white;
  font-weight: 600; font-size: 14px;
  border-radius: var(--radius-sm);
  transition: filter 140ms, transform 80ms;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.auth-submit:hover { filter: brightness(1.05); }
.auth-submit:active { transform: translateY(1px); }
.auth-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-link {
  font-size: 13px; color: var(--ink-3);
  text-decoration: underline; text-underline-offset: 2px;
  align-self: flex-start;
}
.auth-link--center { align-self: center; }
.auth-link:hover { color: var(--ink); }
.auth-card--done { text-align: center; padding: 36px 28px; }
.auth-done-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.auth-card--done h3 {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 24px; margin: 0 0 8px; letter-spacing: -0.01em;
}
.auth-done-copy { color: var(--ink-2); margin: 0 0 18px; font-size: 14px; }

/* Auth feedback messages */
.auth-error,
.auth-note {
  margin: -2px 0 0;
  font-size: 13px;
  line-height: 1.4;
  text-wrap: pretty;
}
.auth-error { color: #C2185B; }
.auth-note { color: #2E7D32; }

/* Social sign-in */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 2px;
  color: var(--ink-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.auth-social {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 140ms, background-color 140ms, transform 80ms;
}
.auth-social-btn:hover:not(:disabled) {
  border-color: var(--ink-3);
  background: #FCFBFA;
}
.auth-social-btn:active:not(:disabled) { transform: translateY(1px); }
.auth-social-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-social-icon { flex: none; }

/* ---------- Charity ---------- */
.charity { padding: 16px 0 36px; }
.charity-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF, #FFF8FB);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.charity-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.charity-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.05;
  text-wrap: balance;
}
.charity-body {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
  text-wrap: pretty;
}
.charity-body strong { color: var(--ink); font-weight: 600; }
.raised { margin-bottom: 28px; max-width: 460px; }
.raised-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.raised-goal { color: var(--ink-3); font-weight: 400; }
.raised-bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.raised-fill { height: 100%; border-radius: 999px; transition: width 600ms; }
.charity-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.charity-right { display: flex; justify-content: center; align-items: center; }
.team-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(150, 60, 100, 0.18)) drop-shadow(0 2px 6px rgba(0,0,0,0.08));
  transform: rotate(-3deg);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.team-logo:hover { transform: rotate(0deg) scale(1.02); }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 140ms, background 140ms;
}
.lang-btn:hover { border-color: var(--ink); }
.lang-btn.is-open { border-color: var(--ink); }
.lang-btn svg:first-child { color: var(--ink-3); }
.lang-btn span { letter-spacing: 0.04em; }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-opt {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
  text-align: left;
  transition: background 120ms;
}
.lang-opt:hover { background: #F6F2F4; }
.lang-opt.is-active { background: var(--pink-soft); color: #7A2952; }
.lang-opt-short {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.lang-opt.is-active .lang-opt-short { color: #B8336A; }
.lang-opt-name { font-weight: 500; }

/* ---------- Share ---------- */
.share {
  padding: 16px 0 36px;
}
.share-inner {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8FB 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 48px 44px;
}
.share-head {
  max-width: 640px;
  margin-bottom: 28px;
}
.share-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
  line-height: 1.04;
  text-wrap: balance;
}
.share-title em {
  font-style: italic;
  font-weight: 500;
  color: #C2185B;
}
.share-sub {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 12px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 80ms, border-color 160ms, color 160ms, background 160ms;
}
.share-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.share-btn:active { transform: translateY(0); }
.share-btn-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: color 160ms;
}
.share-btn-icon svg { width: 100%; height: 100%; display: block; }
.share-btn:hover .share-btn-icon { color: var(--ink); }

/* per-platform brand tints on hover */
.share-btn--whatsapp:hover { border-color: #25D366; }
.share-btn--whatsapp:hover .share-btn-icon { color: #25D366; }
.share-btn--x:hover        { border-color: #111; }
.share-btn--x:hover .share-btn-icon { color: #111; }
.share-btn--facebook:hover { border-color: #1877F2; }
.share-btn--facebook:hover .share-btn-icon { color: #1877F2; }
.share-btn--telegram:hover { border-color: #229ED9; }
.share-btn--telegram:hover .share-btn-icon { color: #229ED9; }
.share-btn--linkedin:hover { border-color: #0A66C2; }
.share-btn--linkedin:hover .share-btn-icon { color: #0A66C2; }
.share-btn--reddit:hover   { border-color: #FF4500; }
.share-btn--reddit:hover .share-btn-icon { color: #FF4500; }
.share-btn--instagram:hover {
  border-color: #E1306C;
  background: linear-gradient(90deg, rgba(225, 48, 108, 0.04), rgba(245, 133, 41, 0.04));
}
.share-btn--instagram:hover .share-btn-icon { color: #E1306C; }
.share-btn--tiktok:hover { border-color: #111; }
.share-btn--tiktok:hover .share-btn-icon { color: #111; }
.share-btn--email:hover    { border-color: var(--ink); }

.share-btn.is-flashing {
  transition: all 240ms;
  max-width: 360px;
}
.share-btn.is-flashing .share-btn-icon { color: white; }

@media (max-width: 820px) {
  .share-inner { padding: 32px 24px 28px; border-radius: var(--radius); }
  .share-btn-label { display: inline; }
  .share-btn { padding: 9px 14px 9px 11px; font-size: 13px; gap: 8px; }
  .share-btn-icon { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  /* on tight screens: icons only, except copy keeps its label */
  .share-row { gap: 8px; }
  .share-btn:not(.share-btn--copy) .share-btn-label { display: none; }
  .share-btn:not(.share-btn--copy) { padding: 10px; aspect-ratio: 1; justify-content: center; gap: 0; }
}

/* ---------- Footer ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.foot-left { display: flex; align-items: center; gap: 14px; }
.foot-left img { height: 28px; opacity: 0.7; }
.foot-right { display: flex; gap: 22px; }
.foot-right a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 16px 0 56px; min-height: 0; }
  .hero-right { min-height: 480px; }
  .photo-stack { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .page { padding: 18px 24px 20px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .subscribe { grid-template-columns: 1fr; gap: 36px; }
  .charity-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .charity-right { order: -1; }
  .team-logo { max-width: 240px; }
  .section-title, .charity-title { font-size: 32px; }
  .nav-brand img { height: 60px; }
}
@media (max-width: 560px) {
  .nav-right { gap: 14px; }
  .nav-link:not(.nav-link--cta) { display: none; }
  .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-meta { gap: 16px; }
  .hero-meta-item .meta-num { font-size: 22px; }
  .foot { flex-direction: column; gap: 14px; align-items: flex-start; }
  .photo-stack { max-width: 320px; }
  .photo-sticker { width: 68px; height: 68px; }
  .photo-sticker span { font-size: 19px; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 56px 0 36px;
  position: relative;
}
.faq-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 44px;
}
.faq-head-left .section-title { max-width: 14ch; }
.faq-head-left .section-title em {
  font-style: italic;
  font-weight: 500;
  color: #C2185B;
}
.faq-head-right {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
}
.faq-head-right--card {
  align-items: flex-start;
  padding-bottom: 0;
  padding-top: 8px;
}

/* ---------- FAQ catalog card ---------- */
.faq-card {
  position: relative;
  width: 280px;
  padding: 24px 22px 22px;
  background:
    repeating-linear-gradient(
      transparent 0px,
      transparent 21px,
      rgba(31, 26, 28, 0.045) 21px,
      rgba(31, 26, 28, 0.045) 22px
    ),
    linear-gradient(180deg, #FFFDF7 0%, #FBF6EE 100%);
  border: 1px solid #E8DFD0;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 16px 30px -12px rgba(120, 60, 80, 0.18),
    0 30px 50px -24px rgba(120, 60, 80, 0.10);
  transform: rotate(-2.2deg);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
  font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color: var(--ink);
  letter-spacing: 0;
  flex-shrink: 0;
}
.faq-card:hover { transform: rotate(-1deg) translateY(-2px); }

.faq-card-hole {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 10px;
  background: var(--bg);
  border: 1px solid #E8DFD0;
  border-top-color: var(--bg);
  border-radius: 0 0 14px 14px / 0 0 10px 10px;
}

.faq-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.faq-card-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.faq-card-no {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.faq-card-rule {
  height: 1px;
  background-image: linear-gradient(to right, var(--ink-3) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.5;
}

.faq-card-rows {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-card-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 6px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  line-height: 1.2;
}
.faq-card-row-label { font-weight: 500; }
.faq-card-row-value {
  font-weight: 700;
  color: var(--ink);
}
.faq-card-row-dots {
  align-self: end;
  height: 1px;
  background-image: linear-gradient(to right, var(--ink-3) 50%, transparent 50%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  opacity: 0.6;
  transform: translateY(-3px);
}

.faq-card-note {
  margin: 14px 0 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
  padding-right: 40px;
}
.faq-card-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink-3);
  margin-right: 1px;
}
.faq-card-quote--close { margin-right: 0; margin-left: 1px; }

.faq-card-seal {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.55),
    0 2px 6px rgba(120, 40, 70, 0.35);
  transform: rotate(8deg);
}
.faq-card-seal::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.6);
  pointer-events: none;
}
.faq-mark {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  animation: faq-spin 36s linear infinite;
}
@keyframes faq-spin {
  to { transform: rotate(360deg); }
}
.faq-head-note {
  margin: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  max-width: 22ch;
  line-height: 1.4;
  text-wrap: balance;
}

.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item.is-open {
  background: linear-gradient(180deg, var(--pink-soft) 0%, transparent 75%);
}

.faq-row {
  width: 100%;
  display: grid;
  grid-template-columns: 92px 1fr 56px;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  text-align: left;
  transition: padding 240ms;
}
.faq-item.is-open .faq-row { padding-bottom: 14px; }

.faq-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 46px;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  line-height: 1;
  transition: color 240ms, transform 320ms cubic-bezier(.2,.7,.2,1);
  user-select: none;
}
.faq-row:hover .faq-num { color: var(--ink-2); }
.faq-item.is-open .faq-num {
  transform: translateX(-2px) rotate(-6deg);
}
.faq-num--ghost { visibility: hidden; }

.faq-q {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  transition: color 200ms, font-style 200ms;
}
.faq-item.is-open .faq-q { font-style: italic; }

.faq-toggle {
  justify-self: end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  background: white;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              background 200ms, border-color 200ms, color 200ms;
}
.faq-row:hover .faq-toggle { border-color: var(--ink); color: var(--ink); }
.faq-item.is-open .faq-toggle { transform: rotate(135deg); }

.faq-body-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 380ms cubic-bezier(.2,.7,.2,1);
}
.faq-body { padding: 0 8px 32px; }
.faq-body-inner {
  display: grid;
  grid-template-columns: 92px 1fr 56px;
  gap: 24px;
  align-items: flex-start;
}
.faq-a-wrap {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.faq-a {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
  flex: 1 1 280px;
}
.faq-a strong { color: var(--ink); font-weight: 600; }
.faq-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(transparent 60%, color-mix(in oklab, #E5638A 30%, white) 60%);
  padding: 0 2px;
  transition: background-image 200ms;
}
.faq-link:hover {
  background-image: linear-gradient(transparent 0%, color-mix(in oklab, #E5638A 30%, white) 0%);
}

.faq-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.faq-qr {
  background: white;
  border-radius: 6px;
  line-height: 0;
  display: block;
  transition: transform 180ms;
}
.faq-qr:hover { transform: scale(1.03); }
.faq-qr-caption {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  max-width: 14ch;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .faq { padding: 40px 0 24px; }
  .faq-head { grid-template-columns: 1fr; gap: 18px; }
  .faq-head-right { padding-bottom: 0; }
  .faq-head-right--card { padding-top: 0; }
  .faq-card { width: 100%; max-width: 320px; transform: rotate(-1.5deg); }
  .faq-mark { width: 64px; height: 64px; }
  .faq-row { grid-template-columns: 56px 1fr 36px; gap: 14px; padding: 22px 4px; }
  .faq-body-inner { grid-template-columns: 56px 1fr 36px; gap: 14px; }
  .faq-num { font-size: 30px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-a { font-size: 15.5px; }
  .faq-q { font-size: 19px; }
  .faq-a-wrap { gap: 18px; }
  .faq-qr svg { width: 120px; height: 120px; }
}

/* ---------- Tile lightbox modal ---------- */
.tm-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 10, 15, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: tm-fade 220ms ease;
}
@keyframes tm-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.tm-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms, transform 80ms;
}
.tm-close:hover { background: rgba(255,255,255,0.22); }
.tm-close:active { transform: scale(0.95); }

.tm-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 40px 100px -20px rgba(60, 20, 35, 0.5);
  max-width: min(960px, 92vw);
  max-height: 88vh;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: tm-rise 320ms cubic-bezier(.2,.7,.2,1);
}
@keyframes tm-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.tm-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--pink-soft);
  overflow: hidden;
}
.tm-img {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-repeat: no-repeat;
}
.tm-locked {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(255,255,255,0.4) 0%, rgba(252, 238, 243, 0.85) 70%);
}
.tm-locked-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(31, 26, 28, 0.88);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tm-locked-msg {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0;
  max-width: 22ch;
  color: var(--ink);
  text-wrap: balance;
}

.tm-cap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px 24px;
  border-top: 1px solid var(--line);
}
.tm-cap-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.tm-cap-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-3);
}
.tm-cap-tag {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 820px) {
  .tm-overlay { padding: 16px; }
  .tm-close { top: 14px; right: 14px; }
  .tm-card { max-height: 92vh; }
  .tm-cap { padding: 16px 20px 18px; }
}
