/* ============================================
   NIREEKSHE SPECIAL SCHOOL — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --saffron:      #E07B2A;
  --saffron-light:#F5A455;
  --saffron-pale: #FEF0E1;
  --teal:         #1B6B72;
  --teal-dark:    #134F55;
  --teal-light:   #D4ECEE;
  --cream:        #FBF7F1;
  --warm-white:   #FFFDF9;
  --charcoal:     #2C2C2C;
  --mid-grey:     #6B6B6B;
  --light-grey:   #E8E4DD;
  --red:          #C0392B;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);

  --max-width: 1140px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--teal-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--mid-grey); font-size: 1.05rem; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}
.btn-primary:hover {
  background: #C96B1A;
  border-color: #C96B1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--teal-dark);
  border-color: white;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--teal-dark);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  text-decoration: none;
}

.top-bar a:hover { color: var(--saffron-light); }

.top-bar .insta-icon {
  width: 16px; height: 16px;
  fill: currentColor;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,253,249,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.nav-logo img {
  height: 62px;
  width: auto;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--saffron); }

.nav-donate {
  background: var(--saffron);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem !important;
}
.nav-donate:hover {
  background: #C96B1A !important;
}
.nav-donate::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 24px 80px;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--teal-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  color: var(--saffron);
}

.hero-meaning {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--mid-grey);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--mid-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero image collage */
.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  mix-blend-mode: luminosity;
  transition: opacity var(--transition);
}

.hero-img-grid img:hover { opacity: 1; mix-blend-mode: normal; }

.hero-img-grid .span-2 {
  grid-column: span 2;
}

.hero-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 10;
  color: white;
}

.hero-overlay-text .tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Decorative elements */
.hero-decor {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,123,42,0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  background: var(--teal-dark);
  padding: 28px 24px;
  color: white;
}

.about-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.about-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-strip-item .icon {
  font-size: 1.4rem;
}

.about-strip-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--warm-white);
}

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

.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--light-grey);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--saffron-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--light-grey);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(19,79,85,0.85));
  color: white;
  padding: 32px 16px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--mid-grey);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
  background: var(--light-grey);
}

.gallery-placeholder .ph-icon {
  font-size: 2rem;
  opacity: 0.4;
}

/* ============================================
   STORIES SECTION
   ============================================ */
.stories-section {
  background: var(--warm-white);
}

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

.story-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.story-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 2.5rem;
}

.story-body {
  padding: 24px;
}

.story-tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.story-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.story-card p {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-date {
  font-size: 0.8rem;
  color: var(--mid-grey);
  font-weight: 600;
}

/* ============================================
   DONATE CTA SECTION
   ============================================ */
.donate-section {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.donate-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224,123,42,0.12);
  pointer-events: none;
}

.donate-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.donate-inner h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.donate-inner p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  font-size: 1.05rem;
}

.donate-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.donate-btns .btn {
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 200px;
}

.btn-inr {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-inr:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ============================================
   SPECIALIZATIONS
   ============================================ */
.specializations-section {
  background: var(--saffron-pale);
  padding: 60px 0;
  text-align: center;
}

.spec-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.spec-pill {
  background: white;
  color: var(--teal-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.spec-pill:hover {
  background: var(--teal-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
  background: var(--cream);
  padding: 60px 0;
}

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

.contact-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-grey);
}

.contact-card .c-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  margin-bottom: 10px;
}

.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.footer h5 {
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer ul li a:hover { color: var(--saffron-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-dark);
  font-weight: 700;
}

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 24px 48px; }
  .hero-visual { height: 380px; display: block; position: relative; }
  .hero-visual::before, .hero-img-grid {
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  }
  .hero-img-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
  .hero-img-grid .span-2 { grid-column: span 1; }

  .about-strip .container { flex-direction: column; text-align: center; }
  .about-strip-divider { display: none; }

  .services-grid,
  .stories-grid,
  .contact-cards { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

  .donate-inner { grid-template-columns: 1fr; text-align: center; }
  .donate-inner p { max-width: none; }
  .donate-btns { flex-direction: row; justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: span 2; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid,
  .stories-grid,
  .contact-cards,
  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item:first-child { grid-column: span 1; }

  .hero-stats { gap: 20px; }
  .donate-btns { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > *:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   QR CODE MODAL
   ============================================ */
.qr-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.qr-modal-overlay.open {
  display: flex;
}

.qr-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.qr-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--mid-grey);
  line-height: 1;
  transition: color var(--transition);
}
.qr-modal-close:hover { color: var(--charcoal); }

.qr-modal h3 {
  color: var(--teal-dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.qr-modal .qr-sub {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

.qr-modal img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-sm);
  margin: 0 auto 16px;
}

.qr-modal .qr-note {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: 12px;
}
