* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --saffron: #FF9933;
  --gold: #D4AF37;
  --deep-gold: #B8860B;
  --cream: #FFFAF0;
  --deep: #5C1E06;
  --text: #1E0E05;
  --muted: #6B4C38;
  --border: #E8D4A8;
  --card: #FFFFFF;
  --light-bg: #FFF8EE;
  --accent-bg: #FFF3DC;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.dev {
  font-family: 'Noto Sans Devanagari', 'Lora', serif;
}

.serif {
  font-family: 'Lora', serif;
}

/* ===== NAV ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  background: rgba(255, 250, 240, 0.97);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.1;
}

.logo-name {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--saffron);
  display: block;
}

.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 153, 51, 0.1);
  color: var(--saffron);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  transition: border-color 0.2s;
}

.search-bar:focus-within {
  border-color: var(--saffron);
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: var(--text);
  width: 150px;
  font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
  color: #C8A87A;
}

.search-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
}

.icon-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255, 153, 51, 0.06);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  background: var(--light-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--deep-gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 1.4rem;
  font-family: 'Inter', sans-serif;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 1.1rem;
}

.hero h1 span {
  color: var(--saffron);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-om {
  font-family: 'Noto Sans Devanagari', 'Lora', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--saffron);
  opacity: 0.12;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-weight: 600;
  white-space: nowrap;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-p {
  background: var(--saffron);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-p:hover {
  background: #E8871A;
  transform: translateY(-1px);
}

.btn-o {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-o:hover {
  background: rgba(255, 153, 51, 0.08);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--saffron);
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ===== SHLOKA CARD ===== */
.shloka-wrap {
  padding: 0 2rem 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.shloka-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 2.8rem;
  position: relative;
  margin-top: -2.5rem;
  overflow: hidden;
}

.shloka-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--saffron), var(--gold));
}

.shloka-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shloka-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.shloka-label-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.shloka-ref-top {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.shloka-dev {
  font-family: 'Noto Sans Devanagari', 'Lora', serif;
  font-size: 1.25rem;
  line-height: 2.0;
  color: var(--deep);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.shloka-roman {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #8B5E3C;
  font-style: italic;
  margin-bottom: 1rem;
}

.shloka-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.shloka-meaning-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.shloka-meaning {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.shloka-actions {
  display: flex;
  gap: 8px;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.s-btn {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.s-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: #FFF3E0;
}

.s-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-hdr-left .eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-hdr-left .eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 0.3rem;
}

.view-all {
  font-size: 13px;
  color: var(--saffron);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 153, 51, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
  transition: all 0.2s;
}

.view-all:hover {
  background: rgba(255, 153, 51, 0.07);
}

/* ===== QUICK NAV ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
}

.qcard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.3rem;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: center;
}

.qcard:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 153, 51, 0.12);
}

.qcard:hover::after {
  transform: scaleX(1);
}

.qcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 153, 51, 0.1);
  border: 1.5px solid rgba(255, 153, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.qcard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.qcard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== GITA CHAPTERS ===== */
.chapters-section {
  background: var(--accent-bg);
  padding: 4rem 2rem;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.ch-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ch-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.15);
  transform: translateX(3px);
}

.ch-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 153, 51, 0.1);
  border: 1.5px solid rgba(255, 153, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--saffron);
  flex-shrink: 0;
}

.ch-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.ch-meta {
  font-size: 11px;
  color: var(--muted);
}

.ch-dev {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 11.5px;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 500;
}

/* ===== FESTIVALS ===== */
.fest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 2rem;
}

.fest-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}

.fest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(180, 110, 30, 0.12);
}

.fest-stripe {
  height: 5px;
}

.fest-body {
  padding: 1.5rem 1.6rem 1.4rem;
}

.fest-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--deep-gold);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 0.8rem;
}

.fest-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.fest-dev {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.fest-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fest-science-box {
  background: rgba(255, 153, 51, 0.05);
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.fest-science-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.fest-science-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.fest-science-text strong {
  color: var(--saffron);
  font-weight: 500;
}

/* ===== MANTRAS ===== */
.mantras-section {
  background: var(--light-bg);
  padding: 4rem 2rem;
}

.cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.cat {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.cat.on,
.cat:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

.mantras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.mantra-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.mantra-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.1);
}

.mantra-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.mantra-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.mantra-deity {
  font-size: 11px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--deep-gold);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.mantra-dev {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 15px;
  color: var(--deep);
  line-height: 2.0;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.mantra-roman {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: #8B5E3C;
  font-style: italic;
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.mantra-divider {
  height: 1px;
  background: var(--border);
  margin: 0.7rem 0;
}

.mantra-meaning {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
}

.mantra-listen {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--saffron);
  margin-top: 0.8rem;
  cursor: pointer;
  font-weight: 500;
}

.mantra-listen svg {
  width: 14px;
  height: 14px;
}

/* ===== CULTURAL INSIGHTS ===== */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.culture-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.culture-card:hover {
  border-color: var(--saffron);
  transform: translateY(-3px);
}

.culture-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 153, 51, 0.1);
  border: 1.5px solid rgba(255, 153, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-q {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.culture-preview {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.culture-tag {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  margin-top: auto;
}

/* ===== WISDOM ===== */
.wisdom-section {
  background: var(--accent-bg);
  padding: 4rem 2rem;
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.wisdom-card {
  border-left: 4px solid var(--saffron);
  background: #fff;
  border-radius: 0 14px 14px 0;
  border-top: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.wisdom-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.wisdom-epic {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.7rem;
}

.wisdom-epic-badge {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--saffron);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.wisdom-dev {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.wisdom-lesson {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.wisdom-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--saffron);
  padding: 3.5rem 2rem;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.newsletter p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
}

.nl-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: #fff;
  color: var(--text);
}

.nl-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: #fff;
  color: var(--saffron);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1.5px solid var(--border);
  background: #fff;
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo-name {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-logo-dev {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--saffron);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 12px;
  color: #B09070;
}

.footer-mantra {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ===== SOCIAL ICONS ===== */
.social-icons,
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}

.social-icon:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255, 153, 51, 0.06);
}

/* Footer-specific alignment */
.footer-social { gap: 10px; }

.social-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

