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

:root {
  --blue-deep: #0D2B55;
  --blue-mid: #1A4B8C;
  --blue-bright: #2563C0;
  --blue-light: #D6E4F7;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --sand: #F0EBE1;
  --text: #111827;
  --text-muted: #6B7280;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(13, 43, 85, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: #7EB8F5;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--white);
  color: var(--blue-deep) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback gradient when no real video is used */
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37, 99, 192, 0.35) 0%, transparent 70%),
    linear-gradient(175deg, #0D2B55 0%, #0a1e3d 50%, #07101d 100%);
  z-index: 0;
}

/* Animated flour/dough particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(110vh) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-20vh) scale(1.1);
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 29, 0.9) 0%, rgba(7, 16, 29, 0.5) 40%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

.hero-logo {
  display: block;
  max-width: 240px;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-badge {
  display: inline-block;
  background: rgba(126, 184, 245, 0.18);
  border: 1px solid rgba(126, 184, 245, 0.38);
  color: #9ECFF7;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: #7EB8F5;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--blue-deep);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--blue-deep);
  padding: 28px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #7EB8F5;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTIONS GENERAL ─────────────────────────────────── */
section {
  padding: 110px 5%;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

h2 em {
  font-style: italic;
  color: var(--blue-bright);
}

/* ── ABOUT ────────────────────────────────────────────── */
.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 192, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Placeholder for image */
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1A4B8C 0%, #0D2B55 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 12px;
}

.about-img-placeholder svg {
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(13, 43, 85, 0.18);
  text-align: center;
}

.about-badge-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.about-badge-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 400;
}

.about-badge-text strong {
  display: block;
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.78;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.95rem;
  color: var(--blue-deep);
  font-weight: 400;
}

/* ── COURSES ──────────────────────────────────────────── */
.courses {
  background: var(--white);
}

.courses-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.courses-header {
  max-width: 580px;
  margin-bottom: 60px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.course-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.course-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 192, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.course-card:hover {
  border-color: rgba(37, 99, 192, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 43, 85, 0.12);
}

.course-card:hover::after {
  opacity: 1;
}

.course-card.featured {
  background: var(--blue-deep);
  color: var(--white);
}

.course-card.featured .course-desc {
  color: rgba(255, 255, 255, 0.65);
}

.course-card.featured .course-tag {
  background: rgba(126, 184, 245, 0.2);
  color: #9ECFF7;
}

.course-card.featured .course-detail {
  color: rgba(255, 255, 255, 0.7);
}

.course-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 500;
}

.course-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.course-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: inherit;
  line-height: 1.2;
}

.course-card.featured h3 {
  color: var(--white);
}

.course-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 20px;
}

.course-card.featured .course-details {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.course-detail {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-detail span:first-child {
  opacity: 0.6;
}

/* ── GALLERY ──────────────────────────────────────────── */
.gallery {
  background: var(--blue-deep);
  padding: 110px 5%;
  overflow: hidden;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.gallery-header .section-label {
  color: #7EB8F5;
}

.gallery-header h2 {
  color: var(--white);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

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

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

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

/* Placeholder tiles */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-item:nth-child(1) .gallery-placeholder {
  background: linear-gradient(135deg, #1a3a6e 0%, #0e2446 100%);
  min-height: 340px;
}

.gallery-item:nth-child(2) .gallery-placeholder {
  background: linear-gradient(135deg, #152f5c 0%, #0d1f3e 100%);
}

.gallery-item:nth-child(3) .gallery-placeholder {
  background: linear-gradient(135deg, #1c3d72 0%, #102241 100%);
}

.gallery-item:nth-child(4) .gallery-placeholder {
  background: linear-gradient(135deg, #132c55 0%, #0c1d38 100%);
}

.gallery-item:nth-child(5) .gallery-placeholder {
  background: linear-gradient(135deg, #173466 0%, #0f2044 100%);
}

.gallery-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  background: var(--sand);
  padding: 110px 5%;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  max-width: 520px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--blue-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--blue-deep);
}

.author-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact {
  background: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.78;
  font-size: 1.02rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(13, 43, 85, 0.1);
  transition: border-color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: rgba(37, 99, 192, 0.3);
  background: var(--off-white);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  color: white;
}

.social-label {
  display: flex;
  flex-direction: column;
}

.social-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.social-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.contact-form p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(13, 43, 85, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(37, 99, 192, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  background: var(--blue-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--blue-deep);
  padding: 44px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: #7EB8F5;
  font-style: italic;
}

footer p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── HAMBURGER MENU ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blue-deep);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin-top: 20px;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 5%;
  }

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

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

  .contact-form {
    padding: 28px 22px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.recaptcha-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}