.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  margin-block-start: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1.12);
  transform-origin: center;
}

.hero-overlay {
  background: linear-gradient(
    to top,
    hsl(40 10% 4%),
    hsl(0 0% 0% / 0.4),
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}

.hero-logo {
  height: clamp(5rem, 12vw, 7rem);
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  color: white;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.15;
  text-shadow:
    0 4px 18px hsl(0 0% 0% / 0.42),
    0 1px 3px hsl(0 0% 0% / 0.45);
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: white;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  text-shadow:
    0 3px 14px hsl(0 0% 0% / 0.36),
    0 1px 2px hsl(0 0% 0% / 0.45);
}

.hero-subtitle[lang="fa"] {
  font-family: var(--font-vazir);
}

.hero-subtitle[lang="en"] {
  font-family: var(--font-poppins);
}

.hero-copy {
  max-width: 42rem;
  margin: 0 auto 0.75rem;
  color: white;
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.8;
  text-shadow:
    0 3px 14px hsl(0 0% 0% / 0.34),
    0 1px 2px hsl(0 0% 0% / 0.42);
}

.hero-copy.muted {
  color: white;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  text-shadow: 0 2px 10px hsl(0 0% 0% / 0.3);
}

.hero-actions .button-outline {
  border-color: hsl(0 0% 100% / 0.3);
  color: white;
}

.hero-actions .button-outline:hover {
  background: hsl(0 0% 100% / 0.1);
  color: white;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  color: white;
  transform: translateX(-50%);
}

.mouse {
  width: 1.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
  border: 2px solid hsl(0 0% 100% / 0.3);
  border-radius: 999px;
  transition: border-color 220ms ease;
}

.mouse-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  animation: floatDot 1.5s ease-in-out infinite;
}

.scroll-indicator:hover .mouse {
  border-color: hsl(var(--primary) / 0.55);
}

#about,
#founders,
#events,
#gallery,
#services,
#news,
#contact {
  scroll-margin-top: 5.5rem;
}

#about {
  padding-block-end: clamp(2rem, 4vw, 3rem);
}

[data-render="founders"] {
  padding-block-start: clamp(1.5rem, 3vw, 2.5rem);
}

[data-render="founders"] .section-title {
  margin-bottom: 2rem;
}

[data-render="founders"] .section-title h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
}

[data-render="founders"] .section-title::after {
  width: 3rem;
  margin-top: 0.75rem;
  opacity: 0.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body[dir="ltr"] .section-kicker {
  font-family: var(--font-poppins);
}

.about-images {
  display: flex;
  justify-content: center;
}

.about-image-card {
  width: min(100%, 34rem);
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 55px hsl(0 0% 0% / 0.24);
  opacity: 0;
  transform: translate3d(0, 1rem, 0) scale(0.96);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 300ms ease;
  will-change: transform, opacity;
}

.about-images.is-visible .about-image-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: aboutImageFloat 7s ease-in-out 900ms infinite;
}

.about-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.18),
    transparent 58%
  );
  opacity: 0.65;
  pointer-events: none;
}

.about-image-card:hover {
  box-shadow: 0 24px 70px hsl(var(--primary) / 0.12);
}

.about-image-card:hover img {
  transform: scale(1.04);
}

body[data-page="home"] #about .about-text {
  width: min(100%, 34rem);
  max-width: calc(100% - 5rem);
  margin-inline: auto;
}

.about-text p {
  margin: 0 0 1.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.98rem;
  line-height: 2;
}

body[data-page="home"] #about .about-text p,
body[data-page="home"] #events .event-description-preview {
  text-align: justify;
}

.event-description-preview p {
  margin: 0 0 1rem;
}

.event-description-preview p:last-child {
  margin-bottom: 0;
}

.founder-card {
  text-align: center;
}

.founders-grid {
  gap: 1.1rem 0.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.founders-grid .founder-card {
  grid-column: span 2;
}

.founders-grid .founder-card:nth-child(5) {
  grid-column: span 2;
}

.founder-photo {
  position: relative;
  width: min(100%, 8rem);
  aspect-ratio: 1;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 0.85rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px hsl(0 0% 0% / 0.34);
  transition:
    box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.3), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center top;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover .founder-photo::after {
    opacity: 1;
  }

  .founder-card:hover .founder-photo {
    box-shadow: 0 16px 48px hsl(0 0% 0% / 0.52);
  }

  .founder-card:hover .founder-photo img {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
}

.founders-grid .founder-card:nth-child(1) {
  transition-delay: 100ms;
}

.founders-grid .founder-card:nth-child(2) {
  transition-delay: 200ms;
}

.founders-grid .founder-card:nth-child(3) {
  transition-delay: 300ms;
}

.founders-grid .founder-card:nth-child(4) {
  transition-delay: 400ms;
}

.founders-grid .founder-card:nth-child(5) {
  transition-delay: 500ms;
}

.founders-grid .founder-card:nth-child(6) {
  transition-delay: 600ms;
}

.founder-name {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 0.92rem;
  font-weight: 700;
}

.founder-role {
  margin: 0.35rem 0 0;
  color: hsl(var(--primary));
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.6;
}

.membership-cards {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.support-card {
  display: block;
  padding: 2rem;
}

.support-icon,
.service-icon,
.info-icon,
.donation-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 0.85rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transition: background 220ms ease;
}

.support-card:hover .support-icon,
.service-card:hover .service-icon {
  background: hsl(var(--primary) / 0.2);
}

.support-card h3 {
  margin: 0 0 0.75rem;
}

.support-card p {
  margin: 0 0 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.8;
}

.inline-more {
  color: hsl(var(--primary));
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes aboutImageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -0.45rem, 0) scale(1.01);
  }
}

.featured-event {
  width: min(100%, 56rem);
  margin-inline: auto;
}

.featured-event .card-media {
  height: clamp(16rem, 40vw, 20rem);
}

.featured-event .hero-actions .button-outline {
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.featured-event .hero-actions .button-outline:hover {
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.media-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.65), transparent 70%);
}

.badge-float {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 1;
}

.event-ribbon {
  inset-inline-start: auto;
  inset-inline-end: auto;
  top: 1.15rem;
  right: auto;
  left: -2.65rem;
  width: 9rem;
  min-width: 0;
  justify-content: center;
  border-radius: 0.28rem;
  padding: 0.38rem 1.1rem;
  box-shadow: 0 10px 24px hsl(0 0% 0% / 0.22);
  line-height: 1.2;
  pointer-events: none;
  text-align: center;
  transform: rotate(-45deg) translateZ(0);
  transform-origin: center;
  white-space: nowrap;
  z-index: 999;
  position: absolute;
}

body[dir="rtl"] .event-ribbon {
  font-family: var(--font-vazir);
}

.event-finished .card-media img {
  filter: saturate(50%) brightness(90%);
  transform:
    700ms ease,
    transition filter 600ms ease;
}

.event-finished:hover .card-media img {
  filter: none;
}

.hero-event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.55rem 1.2rem;
  margin-bottom: 1rem;

  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;

  color: white;

  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
}

.hero-event-badge.badge-upcoming {
  background: #22c55e;
}

.hero-event-badge.badge-finished {
  background: #ef4444;
}

.event-finished-message {
  margin: 2rem 0;
  padding: 2rem;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: hsl(var(--primary));
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 220ms ease;
}

.section-link:hover {
  gap: 0.75rem;
}

body[dir="rtl"] .section-link-more svg {
  transform: scaleX(-1);
  transform-origin: center;
}

body[dir="rtl"] .news-card-read-more svg {
  transform: scaleX(-1);
  transform-origin: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  max-width: 800px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.gallery-preview-card {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  color: white;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.72), transparent);
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.image-card:hover .gallery-caption {
  transform: translateY(0);
}

.phoenix-services-grid {
  --phoenix-surface-glass: rgba(255, 255, 255, 0.03);
  --phoenix-surface-glass-border: rgba(255, 255, 255, 0.06);
  --phoenix-text-primary: #f8fafc;
  --phoenix-text-secondary: #94a3b8;
  --phoenix-accent-gold: #d4af37;
  --phoenix-accent-gold-light: rgba(212, 175, 55, 0.1);
  --phoenix-accent-gold-border: rgba(212, 175, 55, 0.3);
  --phoenix-glass-blur: blur(16px);
  --phoenix-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.light .phoenix-services-grid {
  --phoenix-surface-glass: rgba(0, 0, 0, 0.02);
  --phoenix-surface-glass-border: rgba(0, 0, 0, 0.06);
  --phoenix-text-primary: #111827;
  --phoenix-text-secondary: #64748b;
  --phoenix-accent-gold: #b08d2b;
  --phoenix-accent-gold-light: rgba(176, 141, 43, 0.1);
  --phoenix-accent-gold-border: rgba(176, 141, 43, 0.3);
  --phoenix-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.phoenix-services-grid.reveal {
  opacity: 1;
  transform: none;
}

.phoenix-services-grid .phoenix-service-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 600ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 500ms ease;
}

.phoenix-services-grid.is-visible .phoenix-service-card {
  opacity: 1;
  transform: translateY(0);
}

.phoenix-services-grid.is-visible .phoenix-service-card:nth-child(1) {
  transition-delay: 100ms;
}

.phoenix-services-grid.is-visible .phoenix-service-card:nth-child(2) {
  transition-delay: 200ms;
}

.phoenix-services-grid.is-visible .phoenix-service-card:nth-child(3) {
  transition-delay: 300ms;
}

.phoenix-services-grid.is-visible .phoenix-service-card:nth-child(4) {
  transition-delay: 400ms;
}

.phoenix-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--phoenix-surface-glass-border);
  border-radius: 1.5rem;
  background: var(--phoenix-surface-glass);
  padding: 1.75rem;
  box-shadow: var(--phoenix-shadow-md);
  cursor: pointer;
  backdrop-filter: var(--phoenix-glass-blur);
  -webkit-backdrop-filter: var(--phoenix-glass-blur);
}

.phoenix-service-card:hover {
  transform: translateY(-0.75rem);
}

.phoenix-services-grid.is-visible .phoenix-service-card:hover {
  transform: translateY(-0.75rem);
}

.phoenix-service-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    var(--phoenix-accent-gold-light) 0%,
    transparent 60%
  );
  transition: opacity 500ms ease;
}

.phoenix-service-card:hover .phoenix-service-card-glow {
  opacity: 1;
}

.phoenix-service-card-inner {
  position: relative;
  z-index: 1;
}

.phoenix-service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border: 1px solid var(--phoenix-accent-gold-border);
  border-radius: 1rem;
  background: var(--phoenix-accent-gold-light);
  color: var(--phoenix-accent-gold);
  transition: transform 300ms ease;
}

.phoenix-service-card:hover .phoenix-service-icon {
  transform: scale(1.1);
}

.phoenix-service-icon svg {
  width: 2rem;
  height: 2rem;
  display: block;
  flex: 0 0 auto;
}

.phoenix-service-card h4 {
  margin: 0 0 0.75rem;
  color: var(--phoenix-text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  text-align: center;
}

.phoenix-service-card p {
  margin: 0;
  color: var(--phoenix-text-secondary);
  font-size: 0.875rem;
  line-height: 1.625;
  text-align: justify;
}

@media (min-width: 640px) {
  .phoenix-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .phoenix-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card .card-media {
  height: 11rem;
}

.service-page-card .card-media {
  flex: 0 0 11rem;
}

[data-services-grid] {
  align-content: start;
}

.service-icon {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}

.service-page-card {
  align-self: start;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.service-page-card[hidden] {
  display: none !important;
}

.service-page-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-page-card .card-body h3 {
  width: 100%;
  text-align: center;
}

.service-page-card .card-body p {
  display: -webkit-box;
  min-height: calc(0.82rem * 1.8 * 3);
  max-height: calc(0.82rem * 1.8 * 3);
  overflow: hidden;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.service-read-more {
  margin-top: 1.1rem;
  align-self: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.service-filter-row {
  justify-content: center;
}

.service-listing-badge {
  inset-inline-start: auto;
  inset-inline-end: auto;
  top: 1.15rem;
  right: auto;
  left: -2.65rem;
  width: 9rem;
  min-width: 0;
  justify-content: center;
  border-radius: 0.28rem;
  padding: 0.38rem 1.1rem;
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 10px 24px hsl(0 0% 0% / 0.22);
  font-family: inherit;
  font-size: clamp(0.68rem, 1.7vw, 0.74rem);
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
  text-align: center;
  transform: rotate(-45deg) translateZ(0);
  transform-origin: center;
  white-space: nowrap;
  z-index: 2;
}

.service-listing-badge-free {
  background: hsl(142 71% 45% / 0.92);
}

.service-listing-badge-sale {
  background: hsl(25 95% 53% / 0.92);
}

.service-item-card {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 22px 70px hsl(0 0% 0% / 0.16);
}

.service-item-gallery {
  position: relative;
  direction: ltr;
  overflow: hidden;
  min-width: 0;
  border-radius: 1rem;
  background: hsl(var(--muted));
}

.service-item-slider {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-item-track {
  --service-item-slide-index: 0;
  height: 100%;
  display: flex;
  transform: translateX(calc(var(--service-item-slide-index) * -100%));
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.service-item-slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
}

.service-item-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--border) / 0.45);
  border-radius: 999px;
  background: hsl(var(--background) / 0.74);
  color: hsl(var(--foreground));
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.service-item-arrow:hover {
  border-color: hsl(var(--primary) / 0.45);
  color: hsl(var(--primary));
  transform: translateY(-50%) scale(1.04);
}

.service-item-arrow-prev {
  left: 1rem;
}

.service-item-arrow-next {
  right: 1rem;
}

.service-item-dots {
  position: absolute;
  inset-inline: 0;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.service-item-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.48);
  padding: 0;
  transition:
    background 220ms ease,
    transform 220ms ease,
    width 220ms ease;
}

.service-item-dot.is-active {
  width: 1.35rem;
  background: hsl(var(--primary));
}

.service-item-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(0.25rem, 1vw, 0.75rem);
}

body[dir="rtl"] .service-item-details {
  direction: rtl;
  text-align: right;
}

.service-item-badge {
  width: max-content;
  margin-bottom: 1rem;
  font-family: inherit;
}

.service-item-details h1 {
  margin: 0 0 1.25rem;
  color: hsl(var(--foreground));
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.service-item-section,
.service-item-info {
  border-top: 1px solid hsl(var(--border) / 0.28);
  padding-top: 1rem;
  margin-top: 1rem;
}

.service-item-section h2,
.service-item-info h2 {
  margin: 0 0 0.5rem;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}

.service-item-section p,
.service-item-info p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.9;
}

.service-item-info p + p {
  margin-top: 0.35rem;
}

.service-item-info a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.service-item-info-grid {
  display: grid;
  gap: 0 1.25rem;
}

.service-item-info-grid-locked {
  position: relative;
  align-items: stretch;
}

.service-item-info-locked {
  display: flex;
  flex-direction: column;
}

.service-item-content {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.9;
}

.service-item-content p {
  margin: 0 0 1rem;
}

.service-item-content p:last-child {
  margin-bottom: 0;
}

.service-protected-content {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 4.25rem;
  border: 1px solid hsl(var(--border) / 0.35);
  border-radius: 0.85rem;
  background:
    linear-gradient(
      135deg,
      hsl(var(--background) / 0.68),
      hsl(var(--card) / 0.42)
    ),
    hsl(var(--background) / 0.54);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  user-select: none;
}

.service-protected-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      hsl(var(--background) / 0.38),
      hsl(var(--primary) / 0.09)
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0 0.65rem,
      hsl(var(--foreground) / 0.035) 0.65rem 1.15rem
    );
  pointer-events: none;
}

.service-protected-content::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  z-index: 2;
  border-radius: 0.65rem;
  box-shadow: inset 0 0 1.5rem hsl(var(--background) / 0.55);
  pointer-events: none;
}

.service-protected-mask {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 0.85rem;
  color: hsl(var(--muted-foreground) / 0.74);
  filter: blur(4px);
  opacity: 0.62;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.service-protected-mask + .service-protected-mask {
  padding-top: 0;
}

.service-protected-notice {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  border: 1px solid hsl(var(--primary) / 0.16);
  border-radius: 999px;
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--muted-foreground));
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.7;
}

.service-item-actions {
  grid-column: 1 / -1;
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--border) / 0.28);
}

body[dir="rtl"] .service-item-actions {
  direction: rtl;
}

.service-item-back-link {
  flex: 0 0 auto;
  min-height: 2.6rem;
  padding-inline: 1rem;
  font-size: 0.85rem;
}

.service-item-rating {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.65rem;
  color: hsl(var(--muted-foreground));
}

.service-rating-label {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-rating-stars {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.service-rating-star {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: hsl(var(--muted-foreground) / 0.42);
  padding: 0;
  font-size: 1.28rem;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.service-rating-star:hover,
.service-rating-star:focus-visible,
.service-rating-star.is-filled {
  color: hsl(var(--primary));
}

.service-rating-star:hover,
.service-rating-star:focus-visible {
  background: hsl(var(--primary) / 0.1);
  transform: translateY(-1px) scale(1.06);
}

.service-item-rating.is-rating-disabled {
  opacity: 0.58;
}

.service-item-rating.is-rating-disabled .service-rating-label {
  color: hsl(var(--muted-foreground));
}

.service-rating-star:disabled {
  color: hsl(var(--muted-foreground) / 0.3);
  cursor: not-allowed;
}

.service-rating-star.is-filled:disabled {
  color: hsl(var(--primary));
}

.service-rating-star:disabled:hover,
.service-rating-star:disabled:focus-visible {
  background: transparent;
  transform: none;
}

.service-rating-star.is-filled:disabled:hover,
.service-rating-star.is-filled:disabled:focus-visible {
  color: hsl(var(--primary));
}

.service-rating-star:not(.is-filled):disabled:hover,
.service-rating-star:not(.is-filled):disabled:focus-visible {
  color: hsl(var(--muted-foreground) / 0.3);
}

.service-page-card {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.35rem, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-page-card.is-services-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.service-page-card.is-services-hiding {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.35rem, 0);
}

.service-item-comments {
  width: min(100%, 72rem);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}

.service-item-comments .album-thread-section {
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 4vw, 2.5rem);

  border: 1px solid hsl(var(--border) / 0.22);
  border-radius: 1.5rem;

  background: hsl(var(--card));

  box-shadow: 0 18px 60px hsl(0 0% 0% / 0.08);
}

@media (min-width: 1024px) {
  [data-services-grid] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-item-card {
    direction: ltr;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
  }

  .service-item-details {
    direction: ltr;
  }

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

@media (max-width: 560px) {
  .service-item-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  body[dir="rtl"] .service-item-actions {
    align-items: flex-end;
  }

  .service-item-rating {
    width: 100%;
    justify-content: space-between;
  }

  .service-item-back-link {
    width: 100%;
    justify-content: center;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: min(100%, 64rem);
  margin-inline: auto;
}

.contact-grid-centered {
  width: min(100%, 34rem);
  justify-content: center;
}

.contact-grid-centered .form-stack {
  width: 100%;
}

.contact-file-zone {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px dashed hsl(var(--border) / 0.55);
  border-radius: 0.85rem;
  background: hsl(var(--card) / 0.62);
  padding: 1rem;
  cursor: pointer;
  transition:
    opacity 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.contact-file-zone:hover,
.contact-file-zone:focus-visible {
  border-color: hsl(var(--primary) / 0.48);
  opacity: 0.8;
}

.contact-file-zone:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.contact-file-zone svg {
  flex: 0 0 auto;
  color: hsl(var(--primary));
}

.contact-file-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.contact-file-label {
  overflow: hidden;
  color: hsl(var(--foreground));
  font-size: 0.88rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-file-hint {
  color: hsl(var(--muted-foreground));
  font-size: 0.78rem;
}

.contact-file-input {
  display: none;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item h3,
.info-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.info-item p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.82rem;
}

.page-hero {
  position: relative;
  height: clamp(18rem, 42vw, 24rem);
  overflow: hidden;
  margin-top: 5rem;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(var(--background)),
    hsl(0 0% 0% / 0.4),
    transparent
  );
}

.page-hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 2rem;
  z-index: 1;
}

body[data-page="event"][dir="rtl"] .page-hero .badge {
  font-family: var(--font-vazir);
}

.page-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  font-weight: 600;
}

.back-link:hover {
  color: hsl(var(--primary));
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 1.5rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-copy {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 2;
}

.detail-copy p {
  margin: 0 0 1rem;
}

.detail-copy p:last-child {
  margin-bottom: 0;
}

body[data-page="event"] .detail-main p {
  text-align: justify;
}

body[data-page="privacy"] #main li::marker,
body[data-page="terms"] #main li::marker {
  color: hsl(var(--primary));
}

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

.countdown-box {
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 0.85rem;
  background: hsl(var(--card));
  padding: 1rem 0.5rem;
  text-align: center;
}

.countdown-value {
  color: hsl(var(--primary));
  font-family: var(--font-poppins);
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  margin-top: 0.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

.sticky-card {
  align-self: start;
  height: fit-content;
  position: static;
  top: auto;
}

.article-image {
  height: clamp(18rem, 48vw, 24rem);
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  display: grid;
  gap: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 2;
}

.article-body p {
  margin: 0;
}

.article-body + .back-link {
  margin-top: 2rem;
  margin-bottom: 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(68%, 48rem);
  margin-inline: auto;
  grid-auto-rows: clamp(3.75rem, 15vw, 5.45rem);
  grid-auto-flow: dense;
  gap: clamp(0.5rem, 1.35vw, 0.68rem);
}

.media-filter-row {
  margin-bottom: clamp(1rem, 2.75vw, 1.7rem);
}

.media-filter-row .tab-button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.media-filter-row .tab-button:hover {
  transform: translateY(-1px);
}

.media-filter-row .tab-button.is-active {
  box-shadow: 0 12px 30px hsl(var(--primary) / 0.24);
}

.gallery-item {
  position: relative;
  display: block;
  break-inside: avoid;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  background: hsl(var(--muted));
  box-shadow: 0 16px 42px hsl(0 0% 0% / 0.1);
  cursor: zoom-in;
  text-align: inherit;
  transition:
    box-shadow 260ms ease,
    filter 260ms ease,
    transform 260ms ease;
}

a.gallery-item {
  cursor: pointer;
}

.gallery-item[data-layout-slot="solo"],
.gallery-item[data-layout-slot="feature"] {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item[data-layout-slot="portrait"],
.gallery-item[data-layout-slot="tall"],
.gallery-item[data-layout-slot="poster"] {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item[data-layout-slot="compact"],
.gallery-item[data-layout-slot="square"],
.gallery-item[data-layout-slot="small"] {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item[data-layout-slot="cinematic"],
.gallery-item[data-layout-slot="wide"],
.gallery-item[data-layout-slot="landscape"] {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-cross-masonry {
  grid-auto-rows: clamp(0.49rem, 2.05vw, 0.68rem);
}

.gallery-cross-masonry .gallery-item[data-layout-slot="cross-horizontal"] {
  grid-column: span 4;
  grid-row: span 10;
}

.gallery-cross-masonry .gallery-item[data-layout-slot="cross-portrait"] {
  grid-column: span 2;
  grid-row: span 20;
}

.gallery-cross-masonry .gallery-item[data-layout-slot="cross-square"] {
  grid-column: span 2;
  grid-row: span 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 700ms ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 0% / 0);
  color: white;
  opacity: 0;
  transition:
    background 220ms ease,
    opacity 220ms ease;
}

.gallery-item:hover .gallery-overlay {
  background: hsl(0 0% 0% / 0.4);
  opacity: 1;
}

.gallery-video-card {
  cursor: pointer;
}

.gallery-video-card .gallery-overlay {
  background: hsl(0 0% 0% / 0.18);
  opacity: 1;
}

.gallery-video-card:hover .gallery-overlay {
  background: hsl(0 0% 0% / 0.34);
}

.gallery-item:hover {
  box-shadow: 0 24px 64px hsl(0 0% 0% / 0.2);
  filter: saturate(1.04);
  transform: translateY(-2px);
}

.gallery-title {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  color: white;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.8), transparent);
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

.gallery-title.is-visible {
  transform: translateY(0);
}

.gallery-curated-layout .gallery-album-card .gallery-overlay,
.gallery-curated-layout
  .gallery-video-card.gallery-album-card
  .gallery-overlay {
  background: hsl(0 0% 0% / 0);
  opacity: 0;
}

.gallery-curated-layout .gallery-album-card .gallery-overlay svg {
  transform: scale(0.84);
  transition: transform 220ms ease;
}

.gallery-curated-layout .gallery-album-card:hover .gallery-overlay,
.gallery-curated-layout .gallery-album-card:focus-visible .gallery-overlay,
.gallery-curated-layout .gallery-album-card.is-touch-revealed .gallery-overlay,
.gallery-curated-layout
  .gallery-video-card.gallery-album-card:hover
  .gallery-overlay,
.gallery-curated-layout
  .gallery-video-card.gallery-album-card:focus-visible
  .gallery-overlay,
.gallery-curated-layout
  .gallery-video-card.gallery-album-card.is-touch-revealed
  .gallery-overlay {
  background: hsl(0 0% 0% / 0.34);
  opacity: 1;
}

.gallery-curated-layout .gallery-album-card:hover .gallery-overlay svg,
.gallery-curated-layout .gallery-album-card:focus-visible .gallery-overlay svg,
.gallery-curated-layout
  .gallery-album-card.is-touch-revealed
  .gallery-overlay
  svg {
  transform: scale(1);
}

.gallery-curated-layout .gallery-album-card .gallery-title,
.gallery-curated-layout .gallery-album-card .gallery-title.is-visible {
  inset-inline: 1rem;
  top: 14%;
  bottom: auto;
  width: auto;
  border-radius: 999px;
  background: hsl(0 0% 0% / 0.5);
  padding: 0.55rem 0.85rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.gallery-curated-layout .gallery-album-card:hover .gallery-title,
.gallery-curated-layout .gallery-album-card:focus-visible .gallery-title,
.gallery-curated-layout .gallery-album-card.is-touch-revealed .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

.gallery-album-card {
  position: relative;
  overflow: hidden;
}

.gallery-album-card.is-locked {
  pointer-events: none;
}

.gallery-album-card.is-locked img {
  filter: blur(18px) brightness(0.7);
  transform: scale(1.08);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.gallery-album-card.is-locked::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18));

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  z-index: 5;
}

.gallery-lock-overlay {
  position: absolute;
  inset: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 50;

  pointer-events: none;
}

.gallery-lock-card {
  width: min(380px, 90%);
  padding: 28px 32px;
  border-radius: 24px;
  text-align: center;
  background: rgba(16, 16, 16, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  color: #fff;
  pointer-events: auto;
}

.gallery-lock-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.gallery-lock-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.gallery-lock-card p {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-lock-card .button {
  padding: 0.72rem 1.6rem;
  font-size: 0.8rem;
  min-width: 170px;
}

.gallery-exit-ghost {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px hsl(0 0% 0% / 0.2);
}

.album-masonry {
  margin-bottom: 1rem;
}

.album-thread-section {
  display: grid;
  gap: 1rem;
  width: min(100%, 48rem);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  border: 1px solid hsl(var(--border) / 0.32);
  border-radius: 1.25rem;
  background: hsl(var(--card));
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 18px 55px hsl(0 0% 0% / 0.08);
}

.album-thread-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.album-thread-header h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.album-thread-header span,
.album-thread-meta span {
  color: hsl(var(--muted-foreground));
  font-size: 0.78rem;
}

.album-thread-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.album-thread-avatar {
  position: relative;
  display: inline-flex;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.14);
  color: hsl(var(--primary));
  font-size: 0.78rem;
  font-weight: 800;
}

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

.album-thread-author {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.album-thread-author span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.album-thread-list {
  display: grid;
  gap: 1rem;
}

.album-thread-comment {
  display: grid;
  gap: 0.55rem;
  margin-inline-start: calc(
    var(--comment-depth, 0) * clamp(0.75rem, 3vw, 1.25rem)
  );
  border-inline-start: 2px solid hsl(var(--primary) / 0.24);
  border-radius: 0.85rem;
  background: hsl(var(--background) / 0.48);
  padding: 0.9rem;
}

.album-thread-meta strong {
  color: hsl(var(--foreground));
  font-size: 0.86rem;
}

.album-thread-comment p,
.album-thread-empty {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.88rem;
  line-height: 1.8;
}

.album-thread-deleted {
  font-style: italic;
}

.album-thread-edited {
  color: hsl(var(--muted-foreground));
}

.album-thread-comment.is-deleted {
  background: hsl(var(--muted) / 0.28);
}

.album-thread-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.album-thread-reply-toggle,
.album-thread-edit-toggle,
.album-thread-delete {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.album-thread-reply-toggle,
.album-thread-edit-toggle {
  color: hsl(var(--primary));
}

.album-thread-delete {
  color: hsl(var(--destructive, 0 72% 51%));
}

.album-thread-actions .is-admin-action {
  color: hsl(var(--foreground));
}

.album-thread-replies {
  display: grid;
  gap: 0.85rem;
}

.album-thread-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.album-thread-form .field {
  width: 100%;
  min-height: 3rem;
}

.album-thread-form textarea.field {
  min-height: 10rem;
  resize: vertical;
}

.album-thread-form .button {
  justify-self: flex-start;
  min-width: 11rem;
  min-height: 3rem;

  border-radius: 999px;
  border: none;

  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));

  padding: 0.9rem 1.6rem;

  font-size: 0.95rem;
  font-weight: 600;

  transition: all 0.25s ease;
}

.album-thread-form .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px hsl(var(--primary) / 0.25);
}

.album-thread-form .button:focus-visible {
  outline: 3px solid hsl(var(--primary) / 0.25);
  outline-offset: 2px;
}

@keyframes album-thread-edit-in {
  from {
    opacity: 0;
    transform: translateY(-0.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-curated-layout {
  display: grid;
  width: min(68%, 48rem);
  margin-inline: auto;
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "center"
    "topright"
    "strip"
    "bottomwide"
    "bottomright";
  gap: clamp(0.5rem, 1.35vw, 0.68rem);
}

.gallery-curated-left {
  grid-area: left;
}

.gallery-curated-center-stack {
  grid-area: center;
}

.gallery-curated-top-right {
  grid-area: topright;
}

.gallery-curated-strip {
  grid-area: strip;
}

.gallery-curated-bottom-wide {
  grid-area: bottomwide;
}

.gallery-curated-bottom-right {
  grid-area: bottomright;
}

.gallery-curated-stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: start;
  align-content: start;
  gap: clamp(0.5rem, 1.35vw, 0.68rem);
}

.gallery-curated-layout .gallery-item {
  min-height: 0;
}

.gallery-curated-tall {
  aspect-ratio: 4 / 7;
}

.gallery-curated-horizontal {
  aspect-ratio: 16 / 9;
}

.gallery-curated-square {
  aspect-ratio: 1;
}

.gallery-curated-portrait {
  aspect-ratio: 3 / 4;
}

.gallery-curated-strip {
  aspect-ratio: 21 / 5;
  min-height: clamp(3.4rem, 9.5vw, 4.75rem);
}

.gallery-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  margin-bottom: 48px;
}

.gallery-page-button {
  min-width: 2.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 999px;
  background: transparent;
  color: hsl(var(--muted-foreground));
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.gallery-page-button:hover:not(:disabled) {
  border-color: hsl(var(--primary) / 0.45);
  color: hsl(var(--foreground));
  transform: translateY(-1px);
}

.gallery-page-button.is-active {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.gallery-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

@media (max-width: 639px) {
  .gallery-curated-stack {
    grid-template-rows: none;
  }

  .gallery-curated-layout .gallery-item,
  .gallery-curated-tall,
  .gallery-curated-horizontal,
  .gallery-curated-square,
  .gallery-curated-strip {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .album-thread-comment {
    margin-inline-start: calc(var(--comment-depth, 0) * 0.65rem);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
  z-index: 5000;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  align-items: center;
  gap: 1rem;

  max-width: 95vw;
  max-height: 90vh;
}

.lightbox-image-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 85vw;
  max-height: 80vh;

  border-radius: 16px;
  display: block;
}

.lightbox-nav {
  display: none !important;
  width: 52px;
  height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition: all 0.25s ease;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;

  stroke: white;
  stroke-width: 2.2;
  fill: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);

  transform: translateY(-50%) scale(1.1);

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  position: absolute;

  top: 30px;
  right: 30px;

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: white;
  font-size: 2rem;

  cursor: pointer;
}

.lightbox-title {
  margin-top: 1rem;
  color: white;
  text-align: center;
}

.lightbox-counter {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.9rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-title,
.lightbox-counter {
  display: none !important;
}

.finished {
  filter: grayscale(1);
}

.finished:hover {
  filter: grayscale(0);
}

.bank-info {
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 0.85rem;
  background: hsl(var(--background));
  padding: 1.25rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  align-items: center;
  padding: 1rem 0;
}

.bank-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bank-row + .bank-row {
  margin-top: 0.55rem;
}

.bank-row strong {
  color: hsl(var(--foreground));
}

.donation-note {
  background: #f9f8f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 24px;
}

.donation-note-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.donation-note p {
  margin: 0;
  line-height: 2;
  text-align: justify;
}

@media (min-width: 640px) {
  .gallery-masonry {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: clamp(3.75rem, 8.15vw, 4.75rem);
  }

  .gallery-item[data-layout-slot="solo"] {
    grid-column: span 8;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="feature"] {
    grid-column: span 4;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="portrait"],
  .gallery-item[data-layout-slot="tall"],
  .gallery-item[data-layout-slot="poster"] {
    grid-column: span 2;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="compact"],
  .gallery-item[data-layout-slot="square"],
  .gallery-item[data-layout-slot="small"] {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-item[data-layout-slot="cinematic"],
  .gallery-item[data-layout-slot="wide"],
  .gallery-item[data-layout-slot="landscape"] {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gallery-cross-masonry {
    grid-auto-rows: clamp(0.51rem, 1.1vw, 0.73rem);
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-horizontal"] {
    grid-column: span 4;
    grid-row: span 15;
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-portrait"] {
    grid-column: span 2;
    grid-row: span 30;
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-square"] {
    grid-column: span 2;
    grid-row: span 15;
  }

  .gallery-curated-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "left center"
      "topright strip"
      "bottomwide bottomright";
  }

  body[dir="rtl"] .gallery-curated-layout {
    grid-template-areas:
      "center left"
      "strip topright"
      "bottomright bottomwide";
  }

  .gallery-curated-horizontal,
  .gallery-curated-stack {
    min-height: clamp(7.5rem, 17.7vw, 10.2rem);
  }
}

@media (min-width: 768px) {
  .founder-photo {
    width: min(100%, 10rem);
  }

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

  .founders-grid .founder-card {
    grid-column: span 2;
  }

  .founders-grid .founder-card:nth-child(4) {
    grid-column: span 2;
  }

  .founders-grid .founder-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .founders-grid {
    width: min(100%, 60rem);
    margin-inline: auto;
    gap: 1.35rem 0.9rem;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .founders-grid .founder-card,
  .founders-grid .founder-card:nth-child(4),
  .founders-grid .founder-card:nth-child(5) {
    grid-column: span 2;
  }

  .founders-grid .founder-card:nth-child(5) {
    grid-column: 3 / span 2;
  }

  .founders-grid .founder-card:nth-child(6) {
    grid-column: 5 / span 2;
  }

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

  .contact-grid.contact-grid-centered {
    grid-template-columns: minmax(0, 34rem);
  }

  .detail-grid {
    grid-template-columns: 2fr 1fr;
  }

  body[data-page="event"] .sticky-card {
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    position: sticky;
    top: 6rem;
  }

  .gallery-masonry {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: clamp(3.9rem, 4.75vw, 5.25rem);
  }

  .gallery-item[data-layout-slot="solo"] {
    grid-column: span 12;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="feature"] {
    grid-column: span 6;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="portrait"] {
    grid-column: span 3;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="compact"] {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item[data-layout-slot="cinematic"] {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-item[data-layout-slot="tall"],
  .gallery-item[data-layout-slot="poster"] {
    grid-column: span 3;
    grid-row: span 4;
  }

  .gallery-item[data-layout-slot="wide"] {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-item[data-layout-slot="square"],
  .gallery-item[data-layout-slot="small"] {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item[data-layout-slot="landscape"] {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-cross-masonry {
    grid-auto-rows: clamp(0.46rem, 0.6vw, 0.6rem);
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-horizontal"] {
    grid-column: span 6;
    grid-row: span 15;
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-portrait"] {
    grid-column: span 3;
    grid-row: span 30;
  }

  .gallery-cross-masonry .gallery-item[data-layout-slot="cross-square"] {
    grid-column: span 3;
    grid-row: span 15;
  }

  .gallery-curated-layout {
    grid-template-columns:
      minmax(0, 1.08fr) minmax(0, 0.96fr) minmax(0, 0.84fr)
      minmax(0, 1.26fr);
    grid-template-rows: minmax(0, 1.45fr) minmax(0, 0.5fr) minmax(0, 0.9fr);
    grid-template-areas:
      "left center topright topright"
      "left center strip strip"
      "left bottomwide bottomwide bottomright";
  }

  body[dir="rtl"] .gallery-curated-layout {
    grid-template-areas:
      "topright topright center left"
      "strip strip center left"
      "bottomright bottomwide bottomwide left";
  }

  .gallery-curated-horizontal,
  .gallery-curated-tall,
  .gallery-curated-stack,
  .gallery-curated-strip {
    min-height: 0;
    height: 100%;
  }

  .gallery-curated-layout .gallery-item {
    height: 100%;
  }

  .gallery-curated-tall,
  .gallery-curated-horizontal,
  .gallery-curated-square,
  .gallery-curated-strip {
    aspect-ratio: auto;
  }
}

.album-curated-layout {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  gap: clamp(0.25rem, 0.68vw, 0.34rem);
}
.album-curated-layout .gallery-title {
  display: none;
}

.album-curated-shell {
  display: grid;
}

.album-curated-filter-panel {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.85rem) scale(0.985);
  visibility: hidden;
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 420ms;
}

.album-curated-filter-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
  z-index: 1;
}

.album-curated-filter-panel .gallery-item {
  opacity: 0;
  transform: translateY(0.65rem) scale(0.985);
  transition:
    opacity 320ms ease,
    box-shadow 260ms ease,
    filter 260ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.album-curated-filter-panel.is-active .gallery-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.album-curated-filter-panel.is-active .gallery-item:hover {
  transform: translateY(-2px);
}

.gallery-lock-card svg {
  display: block;
  margin: 0 auto 18px;
}

.album-curated-pair {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 1.35vw, 0.68rem);
}

body[dir="rtl"] .album-curated-pair {
  flex-direction: row-reverse;
}

.album-curated-pair .album-curated-layout {
  margin-inline: 0;
}

.album-curated-layout .gallery-curated-stack {
  gap: clamp(0.25rem, 0.68vw, 0.34rem);
}

.album-curated-layout .gallery-curated-strip {
  min-height: clamp(1.7rem, 4.75vw, 2.4rem);
}

@media (min-width: 640px) {
  .album-curated-layout-mirror {
    grid-template-areas:
      "center left"
      "strip topright"
      "bottomright bottomwide";
  }

  body[dir="rtl"] .album-curated-layout-mirror {
    grid-template-areas:
      "left center"
      "topright strip"
      "bottomwide bottomright";
  }

  .album-curated-layout .gallery-curated-horizontal,
  .album-curated-layout .gallery-curated-stack {
    min-height: clamp(3.75rem, 8.85vw, 5.1rem);
  }
}

@media (min-width: 1024px) {
  .album-curated-layout-mirror {
    grid-template-areas:
      "topright topright center left"
      "strip strip center left"
      "bottomright bottomwide bottomwide left";
  }

  body[dir="rtl"] .album-curated-layout-mirror {
    grid-template-areas:
      "left center topright topright"
      "left center strip strip"
      "left bottomwide bottomwide bottomright";
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-item img,
  .album-curated-filter-panel {
    transition: none;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .founder-photo,
  .founder-photo::after,
  .founder-photo img {
    transition: none;
  }

  .founders-grid .founder-card {
    transition-delay: 0ms;
  }

  .founder-card:hover .founder-photo img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .lightbox-content {
    width: 100%;
    max-width: 100vw;
    padding-inline: 0.5rem;
    gap: 0.25rem;
  }

  .lightbox img {
    max-width: 95vw;
    max-height: 75vh;
    width: auto;
    height: auto;
  }

  .lightbox-image-wrapper {
    max-width: 95vw;
  }

  .lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .lightbox-nav svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-preview-card {
  position: relative;
  overflow: hidden;

  border-radius: 24px;

  display: block;

  aspect-ratio: 4 / 3;
}

.gallery-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-preview-card:hover::before {
  background: rgba(0, 0, 0, 0.28);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 30%,
    rgba(0, 0, 0, 0) 70%
  );

  opacity: 0;
  transition: all 0.35s ease;
}

.gallery-preview-card:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

.gallery-preview-title {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  transform: translateY(25px);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;

  transition-delay: 0.08s;
}

.gallery-preview-card:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(95, 50, 50, 0.2),
    rgba(125, 99, 5, 0.45)
  );
}

.gallery-preview-card:hover .gallery-preview-title {
  transform: translateY(0);
}

.gallery-preview-icon {
  position: absolute;
  top: 35%;

  color: white;

  opacity: 0;
  transform: translate(-50%, -50px) scale(0.8);

  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}
.gallery-preview-card:hover .gallery-preview-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.news-card .card-body p,
body[data-page="news"] .card-body p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;

  line-height: 1.8;
  min-height: calc(1em * 1.8 * 4);
}

.footer-contact-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: hsl(var(--primary));
  text-decoration: none;
}

/* ==========================================================
   SERVICE COMMENTS
========================================================== */

.service-comments-wrapper {
  width: min(100%, 72rem);
  margin: clamp(2.5rem, 6vw, 4rem) auto;
}

.service-comments-section {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.22);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 18px 60px hsl(0 0% 0% / 0.08);
}

.service-comments-header {
  margin-bottom: 2rem;
}

.service-comments-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-comment-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-comment-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-comment-form .field {
  width: 100%;
}

.service-comment-form textarea.field {
  resize: vertical;
  min-height: 180px;
}

.service-comment-form .button {
  align-self: flex-start;
}

.service-comments-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-comment {
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  background: hsl(var(--background));
}

.service-comment header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.service-comment time {
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .service-comment-row {
    grid-template-columns: 1fr;
  }
}

.service-comment-author {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.9rem;
}

.service-comment-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;

  display: grid;
  place-items: center;

  font-weight: 700;
  font-size: 1rem;

  color: white;

  background: hsl(var(--primary));

  flex-shrink: 0;
}

.service-comment-author time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: hsl(var(--muted-foreground));
}

.service-comment header time {
  white-space: nowrap;
  font-size: 0.82rem;
  color: hsl(var(--muted-foreground));
}

@keyframes galleryLockPulse {
  0% {
    transform: translateY(-40px) scale(1);
  }

  35% {
    transform: translateY(-40px) scale(1.05);
  }

  65% {
    transform: translateY(-40px) scale(0.98);
  }

  100% {
    transform: translateY(-40px) scale(1);
  }
}

.gallery-lock-card.is-pulse {
  animation: galleryLockPulse 0.38s ease;
}

.bank-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

html[dir="rtl"] .bank-label {
  font-family: var(--font-vazir);
}

html[dir="ltr"] .bank-label {
  font-family: var(--font-poppins);
}

.bank-label svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

.bank-info-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.donation-actions .button,
.donation-actions a.button {
  flex: 0 0 calc(50% - 6px);
  max-width: 200px;
  min-height: 34px;
  padding: 0 18px;
  font-size: 0.84rem;
  font-weight: 500;
  gap: 0.45rem;
  border-radius: 999px;
}

.donation-actions .button svg,
.donation-actions a.button svg {
  width: 16px;
  height: 16px;
}

.donation-actions .button-primary {
  flex: 0 0 100%;
  max-width: 420px;
}

.donation-note svg {
  color: hsl(var(--primary)) !important;
}

.donation-actions .button.is-copied {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  transition: all 0.25s ease;
}

.donation-actions .button.is-copied svg {
  color: #fff;
}

.donation-actions .button {
  transition: all 0.25s ease;
}

.copy-highlight {
  background: rgba(212, 175, 55, 0.15);
  color: hsl(var(--primary)) !important;
  border-radius: 8px;
  padding: 2px 8px;
  transition: all 0.25s ease;
}

.copy-highlight-active {
  background: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
