﻿.luxury-site {
  --bg: #f2ece1;
  --surface: #fffdf8;
  --ink: #1d2b24;
  --muted: #607267;
  --deep: #173f35;
  --accent: #c65d2d;
  --accent-soft: #f3d8c5;
  --line: #d6d1c6;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 90% 0%, rgba(198, 93, 45, 0.11), transparent 35%),
    radial-gradient(circle at 0% 25%, rgba(23, 63, 53, 0.09), transparent 42%),
    var(--bg);
  color: var(--ink);
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 40;
  background: linear-gradient(90deg, var(--accent), var(--deep));
}

.page-shell {
  width: min(1160px, calc(100% - 2.6rem));
  margin: 1rem auto 2.6rem;
}

.luxury-topbar {
  gap: 1rem;
  background: rgba(255, 251, 245, 0.82);
  border-bottom: 1px solid rgba(214, 209, 198, 0.82);
  backdrop-filter: blur(16px);
  transition:
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    padding 0.26s ease;
}

.luxury-topbar.is-compact {
  background: rgba(255, 252, 247, 0.94);
  border-bottom-color: rgba(201, 189, 173, 0.92);
  box-shadow: 0 12px 28px rgba(29, 43, 36, 0.08);
}

.luxury-topbar .brand {
  flex-shrink: 0;
}

.luxury-topbar .brand-text {
  font-family: "Alegreya", serif;
  color: var(--deep);
  font-size: 1.08rem;
  line-height: 1.05;
}

.luxury-nav {
  position: relative;
  isolation: isolate;
  flex: 1;
  min-width: 0;
  gap: 0.18rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 189, 173, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 241, 231, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 28px rgba(29, 43, 36, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
  --nav-pointer-x: 50%;
  --nav-pointer-y: 50%;
}

.luxury-nav::-webkit-scrollbar {
  display: none;
}

.luxury-nav::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: radial-gradient(circle at var(--nav-pointer-x) var(--nav-pointer-y), rgba(198, 93, 45, 0.18), transparent 22%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.luxury-nav.is-engaged::before {
  opacity: 1;
}

.luxury-nav a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.7rem;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep);
  opacity: 0.86;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease,
    text-shadow 0.22s ease;
}

.luxury-nav a.is-active {
  color: var(--accent);
  opacity: 1;
}

.luxury-nav.is-ready a.is-active,
.luxury-nav a.is-hot,
.luxury-nav a:hover,
.luxury-nav a:focus-visible {
  color: #fffaf3;
  opacity: 1;
  transform: translateY(-1px);
  text-shadow: 0 1px 10px rgba(23, 63, 53, 0.2);
}

.luxury-nav a:focus-visible {
  outline: none;
}

.luxury-nav .nav-indicator {
  position: absolute;
  top: 0.34rem;
  left: 0.34rem;
  z-index: 1;
  width: 0;
  height: calc(100% - 0.68rem);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(198, 93, 45, 0.94), rgba(23, 63, 53, 0.96));
  box-shadow:
    0 10px 18px rgba(23, 63, 53, 0.18),
    inset 0 1px 0 rgba(255, 244, 234, 0.45);
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
  pointer-events: none;
}

.luxury-nav .nav-indicator::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.luxury-nav .nav-orb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 45, 0.28) 0%, rgba(198, 93, 45, 0) 72%);
  filter: blur(10px);
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.luxury-nav.is-engaged .nav-orb {
  opacity: 0.9;
}

.mode-rail {
  position: fixed;
  left: 1rem;
  top: 6rem;
  display: grid;
  gap: 0.45rem;
  z-index: 30;
}

.mode-link {
  text-decoration: none;
  font-size: 0.74rem;
  padding: 0.46rem 0.62rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  color: var(--deep);
  background: rgba(255, 253, 248, 0.95);
}

.mode-link.active {
  background: var(--deep);
  color: #f8efe6;
  border-color: var(--deep);
}

.lux-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(29, 43, 36, 0.08);
}

.hero-copy h1,
.lux-section h2 {
  font-family: "Alegreya", serif;
  color: var(--deep);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 1.06;
  margin: 0.28rem 0 0.72rem;
}

.hero-text {
  color: var(--muted);
  max-width: 60ch;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero-visual,
.feature-visual {
  min-height: 320px;
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
}

.hero-visual img,
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kpis {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hero-kpis div {
  background: rgba(18, 47, 40, 0.9);
  border: 1px solid rgba(243, 216, 197, 0.55);
  border-radius: 0.5rem;
  padding: 0.42rem;
  color: #fff;
  text-align: center;
}

.hero-kpis strong {
  display: block;
  color: #ffd8bf;
}

.hero-kpis span {
  font-size: 0.7rem;
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  background: var(--deep);
  color: #fff;
  border-radius: 0.58rem;
  border: 1px solid transparent;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #1f5044;
}

.btn-outline {
  background: #fff;
  border-color: var(--accent);
  color: var(--deep);
}

.lux-section {
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(29, 43, 36, 0.05);
}

.lux-section-head {
  margin-bottom: 0.8rem;
}

.lux-section-head h2 {
  margin: 0.1rem 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.mission-grid,
.objective-grid,
.indicator-grid,
.team-grid,
.role-grid,
.gallery-grid,
.path-grid,
.cards-2 {
  display: grid;
  gap: 0.72rem;
}

.mission-grid,
.objective-grid,
.path-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid,
.indicator-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.panel-card,
.team-card,
.gallery-card,
.path-card {
  background: #fff;
  border: 1px solid #e3ded4;
  border-radius: 0.72rem;
  padding: 0.85rem;
}

.path-card {
  text-decoration: none;
  color: inherit;
}

.panel-card h3,
.team-card h3,
.path-card h3 {
  margin: 0.12rem 0 0.34rem;
  color: var(--deep);
}

.panel-card p,
.team-card p,
.path-card p,
.muted {
  margin: 0;
  color: var(--muted);
}

.team-role {
  display: inline-flex;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.action-hub {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f2e9 100%);
}

.action-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 0.8rem;
}

.action-panel {
  background: #fff;
  border: 1px solid #dfd7cb;
  border-radius: 0.72rem;
  padding: 0.9rem;
}

.action-panel h3 {
  margin: 0;
  color: var(--deep);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  margin-bottom: 0.7rem;
}

.choice-btn {
  border: 1px solid #d7ccbd;
  border-radius: 0.65rem;
  background: #fff;
  color: var(--deep);
  font: inherit;
  font-weight: 600;
  padding: 0.72rem 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-btn:hover,
.choice-btn.active {
  background: var(--deep);
  border-color: var(--deep);
  color: #f7efe5;
}

.choice-panel {
  animation: choiceFade 0.22s ease;
}

.is-hidden {
  display: none !important;
}

@keyframes choiceFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donation-tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.66rem 0;
}

.tier-btn {
  background: #fff;
  color: var(--deep);
  border: 1px solid #d5cec2;
  border-radius: 0.48rem;
  padding: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}

.tier-btn.active,
.tier-btn:hover {
  background: #fdf2e8;
  border-color: var(--accent);
}

.calc-controls {
  display: grid;
  gap: 0.55rem;
}

#donationRange {
  width: 100%;
  accent-color: var(--accent);
}

.calc-output {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.calc-output div {
  border: 1px solid #dfd9ce;
  border-radius: 0.56rem;
  padding: 0.58rem;
  background: #faf7f2;
}

.calc-output strong {
  color: var(--accent);
  font-size: 1.5rem;
}

.compact-form {
  margin-top: 0.74rem;
}

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0.58rem;
}

.role-card {
  cursor: pointer;
}

.role-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(198, 93, 45, 0.14);
}

.gallery-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.66rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.counter {
  margin: 0.26rem 0 0;
  color: var(--accent);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid #e3ddd2;
  border-radius: 0.68rem;
  background: #fff;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.72rem;
  font: inherit;
  color: var(--deep);
  font-weight: 600;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.72rem;
  color: var(--muted);
  transition: max-height 0.28s ease;
}

.faq-item.open .faq-a {
  max-height: 120px;
  padding: 0 0.72rem 0.72rem;
}

.notice {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 24;
  text-decoration: none;
  color: #fff;
  background: #238f5d;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 10px 20px rgba(35, 143, 93, 0.26);
}

.luxury-footer {
  border-top: 1px solid #e3ddd2;
  background: rgba(255, 253, 248, 0.95);
}

.reveal-lux {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal-lux.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .lux-hero,
  .action-grid,
  .mission-grid,
  .objective-grid,
  .team-grid,
  .indicator-grid,
  .role-grid,
  .gallery-grid,
  .path-grid,
  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .luxury-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .luxury-nav {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.15rem;
    padding: 0.3rem;
  }

  .luxury-nav a {
    min-height: 2.45rem;
    padding: 0.62rem 0.82rem;
  }

  .mode-rail {
    position: static;
    margin: 0.8rem auto 0;
    width: min(1160px, calc(100% - 1.5rem));
    grid-template-columns: 1fr 1fr;
  }

  .page-shell {
    width: calc(100% - 1.5rem);
  }

  .lux-hero,
  .action-grid,
  .mission-grid,
  .objective-grid,
  .team-grid,
  .indicator-grid,
  .role-grid,
  .gallery-grid,
  .calc-output,
  .choice-grid,
  .donation-tiers,
  .path-grid,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}


.team-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(23, 63, 53, 0.14);
  border-color: #d5c3ae;
}

.team-contact-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem !important;
  font-size: 0.92rem;
}

.team-contact-line i {
  width: 1.2rem;
  text-align: center;
  color: var(--accent);
}

.team-contact-line a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
}

.team-contact-line a:hover {
  text-decoration: underline;
}

.contact-card-main h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card-main i {
  color: var(--accent);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1rem;
}

.social-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.56rem;
  padding: 0.68rem 0.84rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfd7ca;
  color: var(--deep);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(0);
  transition: transform 0.28s ease;
}

.social-link:hover,
.social-link:focus-visible,
.social-link:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 22px rgba(17, 45, 38, 0.17);
  border-color: #cab69d;
}

.social-link:hover::after,
.social-link:focus-visible::after,
.social-link:active::after {
  transform: translateY(-50%) scale(5.5);
}

.social-link:active {
  transform: translateY(0) scale(0.985);
}

.social-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.social-facebook .social-icon { background: #1877f2; }
.social-instagram .social-icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-x .social-icon { background: #0f172a; }
.social-tiktok .social-icon { background: linear-gradient(135deg, #25f4ee, #000000, #fe2c55); }
.social-email .social-icon { background: #c65d2d; }

@media (max-width: 1150px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}
.frequency-switch {
  margin: 0 0 0.25rem;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.frequency-switch legend {
  grid-column: 1 / -1;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.2rem;
}

.freq-pill {
  display: block;
  cursor: pointer;
}

.freq-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.freq-pill span {
  display: block;
  text-align: center;
  border: 1px solid #d5cec2;
  border-radius: 999px;
  padding: 0.52rem 0.6rem;
  background: #fff;
  color: var(--deep);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.freq-pill:hover span {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.freq-pill input:checked + span {
  background: var(--deep);
  border-color: var(--deep);
  color: #f7efe5;
}

@media (max-width: 850px) {
  .frequency-switch {
    grid-template-columns: 1fr;
  }
}
.team-headshot {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0.62rem;
  margin-bottom: 0.62rem;
}

.donation-anon-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--deep);
}

.donation-anon-row input {
  width: auto;
}

.public-site-loader {
  --loader-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(198, 93, 45, 0.16), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(23, 63, 53, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(246, 239, 227, 0.98), rgba(236, 228, 214, 0.98));
  opacity: 1;
  visibility: visible;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.public-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-shell {
  position: relative;
  width: min(720px, calc(100% - 1rem));
}

.loader-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.7;
  animation: loaderAuraPulse 5.2s ease-in-out infinite;
}

.loader-aura-one {
  width: 12rem;
  height: 12rem;
  top: -2.5rem;
  left: -1.5rem;
  background: rgba(198, 93, 45, 0.25);
}

.loader-aura-two {
  width: 15rem;
  height: 15rem;
  right: -2rem;
  bottom: -2rem;
  background: rgba(23, 63, 53, 0.2);
  animation-delay: 1.1s;
}

.loader-stage {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.45rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(212, 202, 189, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 242, 232, 0.92));
  box-shadow:
    0 28px 60px rgba(29, 43, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: center;
  isolation: isolate;
}

.loader-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.44) 50%, transparent 72%);
  transform: translateX(-140%);
  animation: loaderShine 2.8s ease-in-out infinite;
  z-index: -1;
}

.loader-brand-mark {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
}

.loader-brand-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loader-brand-ring-one {
  border: 2px solid rgba(198, 93, 45, 0.34);
  animation: loaderRotate 10s linear infinite;
}

.loader-brand-ring-two {
  inset: 0.7rem;
  border: 1px dashed rgba(23, 63, 53, 0.3);
  animation: loaderRotateReverse 8s linear infinite;
}

.loader-logo {
  width: 5.4rem;
  height: 5.4rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.4rem;
  box-shadow: 0 12px 28px rgba(29, 43, 36, 0.12);
  animation: loaderLogoPulse 2.6s ease-in-out infinite;
}

.loader-title {
  max-width: 12ch;
  margin: 0.38rem auto 0;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.loader-statline {
  display: flex;
  justify-content: center;
  margin-top: 0.95rem;
}

.loader-count-wrap {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.7rem 1rem 0.64rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(213, 202, 188, 0.92);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 28px rgba(29, 43, 36, 0.08);
}

.loader-count {
  display: block;
  min-width: 2.3ch;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.loader-count-label {
  padding-bottom: 0.42rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-caption {
  max-width: 34rem;
  margin: 0.95rem auto 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  min-height: 3.2em;
}

.loader-progress {
  margin: 1.15rem auto 0;
  width: min(30rem, 100%);
  height: 0.8rem;
  padding: 0.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(213, 202, 188, 0.9);
  box-shadow: inset 0 1px 2px rgba(29, 43, 36, 0.06);
  overflow: hidden;
}

.loader-progress-bar {
  display: block;
  width: calc(var(--loader-progress, 0) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(198, 93, 45, 0.94), rgba(233, 194, 121, 0.95), rgba(23, 63, 53, 0.94));
  background-size: 200% 100%;
  box-shadow: 0 6px 16px rgba(23, 63, 53, 0.18);
  transition: width 0.16s linear;
  animation: loaderGradientShift 3.2s linear infinite;
}

.loader-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.loader-pillars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.6rem;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(213, 202, 188, 0.88);
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: loaderPillarLift 3s ease-in-out infinite;
}

.loader-pillars span:nth-child(2) {
  animation-delay: 0.3s;
}

.loader-pillars span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes loaderAuraPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.78;
  }
}

@keyframes loaderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderRotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes loaderLogoPulse {
  0%,
  100% {
    transform: scale(0.96);
    box-shadow: 0 12px 28px rgba(29, 43, 36, 0.12);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 36px rgba(29, 43, 36, 0.18);
  }
}

@keyframes loaderShine {
  0% {
    transform: translateX(-140%);
  }
  55%,
  100% {
    transform: translateX(140%);
  }
}



@keyframes loaderGradientShift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@keyframes loaderPillarLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 850px) {
  .loader-stage {
    padding: 1.55rem 1rem 1.15rem;
    border-radius: 1.4rem;
  }

  .loader-brand-mark {
    width: 7rem;
    height: 7rem;
  }

  .loader-logo {
    width: 4.7rem;
    height: 4.7rem;
  }

  .loader-title {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .loader-count-wrap {
    padding: 0.58rem 0.85rem 0.56rem;
  }

  .loader-count {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .loader-count-label {
    padding-bottom: 0.3rem;
    font-size: 0.7rem;
  }

  .loader-caption {
    min-height: 4.5em;
    font-size: 0.94rem;
  }

  .loader-pillars span {
    min-width: 0;
    flex: 1 1 30%;
  }
}


.debit-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.debit-consent-row {
  grid-column: 1 / -1;
}

@media (max-width: 850px) {
  .debit-order-grid {
    grid-template-columns: 1fr;
  }
}

.welcome-stage {
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98), rgba(246, 235, 221, 0.96));
  border: 1px solid #dccfbe;
  box-shadow: 0 18px 40px rgba(29, 43, 36, 0.09);
}

.welcome-ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
}

.welcome-ambient-one {
  width: 20rem;
  height: 20rem;
  top: -7rem;
  right: -4rem;
  background: rgba(198, 93, 45, 0.16);
}

.welcome-ambient-two {
  width: 18rem;
  height: 18rem;
  bottom: -8rem;
  left: -5rem;
  background: rgba(23, 63, 53, 0.12);
}

.welcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
}

.welcome-copy {
  padding: 0.4rem 0.3rem;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e2d7c9;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.welcome-badge-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  padding: 0.18rem;
  border: 1px solid #e7dccd;
}

.welcome-title {
  margin: 0.5rem 0 0.85rem;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 0.97;
  max-width: 10.5ch;
}

.welcome-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.15rem 0 1rem;
}

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

.welcome-highlight {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #e6dbcf;
  border-radius: 0.9rem;
  padding: 0.85rem;
}

.welcome-highlight span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-highlight p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.welcome-showcase {
  position: relative;
  min-height: 35rem;
}

.welcome-main-photo {
  position: relative;
  height: 100%;
  min-height: 35rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid #d8cdc0;
  box-shadow: 0 16px 34px rgba(29, 43, 36, 0.12);
}

.welcome-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-main-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(19, 54, 46, 0.95), rgba(29, 75, 64, 0.84));
  border: 1px solid rgba(255, 234, 216, 0.28);
  color: #fff;
}

.welcome-main-overlay p {
  margin: 0;
  line-height: 1.55;
}

.welcome-glass-card {
  position: absolute;
  max-width: 16rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid #e4d8cb;
  box-shadow: 0 16px 30px rgba(29, 43, 36, 0.11);
  backdrop-filter: blur(12px);
  animation: welcomeFloat 7.2s ease-in-out infinite;
}

.welcome-card-top {
  top: 1.2rem;
  right: -1rem;
}

.welcome-card-bottom {
  left: -1rem;
  bottom: 4.2rem;
  animation-delay: 1.1s;
}

.welcome-card-label {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-glass-card h3 {
  margin: 0;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: 1.34rem;
  line-height: 1.08;
}

@keyframes welcomeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.welcome-route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.welcome-route {
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #e3d8cb;
  border-radius: 0.95rem;
  padding: 0.92rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.welcome-route:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(29, 43, 36, 0.1);
  border-color: #cfbca7;
}

.welcome-route-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-route strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: 1.35rem;
}

.welcome-route p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.mission-hero {
  margin-top: 1.1rem;
}

.mission-title {
  margin: 0.24rem 0 0.72rem;
  color: var(--deep);
  font-family: "Alegreya", serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.04;
}

.publication-sheet {
  border: 1px solid #e1d7ca;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fffefb 0%, #f8f3ea 100%);
  padding: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.publication-sheet p {
  color: var(--muted);
  line-height: 1.75;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.publication-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e1d6c7;
  background: rgba(255,255,255,0.85);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1150px) {
  .welcome-grid,
  .welcome-highlights,
  .welcome-route-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .welcome-showcase,
  .welcome-main-photo {
    min-height: 30rem;
  }
}

@media (max-width: 850px) {
  .welcome-grid,
  .welcome-highlights,
  .welcome-route-grid {
    grid-template-columns: 1fr;
  }

  .welcome-title {
    max-width: none;
  }

  .welcome-showcase,
  .welcome-main-photo {
    min-height: 24rem;
  }

  .welcome-glass-card {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
    animation: none;
  }
}
