.site-header {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: calc(100% - 20px);
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
  background: rgba(250, 248, 244, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(0, 109, 111, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(0, 77, 79, 0.14);
  backdrop-filter: blur(22px) saturate(160%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--latin);
  font-weight: 900;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 12px 28px rgba(0, 77, 79, 0.30);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--latin);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--heading);
}

.brand small {
  display: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(0, 109, 111, 0.10);
  border-radius: 999px;
  background: rgba(224, 244, 244, 0.60);
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--heading);
  font-weight: 800;
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(0, 77, 79, 0.12);
}

.site-nav .nav-cta {
  background: var(--primary);
  color: #fff;
}

.site-nav .nav-cta.is-active,
.site-nav .nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 77, 79, 0.32);
}

.nav-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 77, 79, 0.28);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

/* ── LANGUAGE TOGGLE BUTTON ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  /* Default (Hindi mode) — teal fill */
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, box-shadow 220ms ease;
  box-shadow: 0 4px 14px rgba(0, 109, 111, 0.30);
}

.lang-toggle:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 77, 79, 0.38);
}

/* English mode — amber/warm fill to signal the switch */
.lang-toggle.is-english {
  background: linear-gradient(135deg, #c96830, var(--accent-dark));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(181, 91, 44, 0.32);
}

.lang-toggle.is-english:hover {
  background: linear-gradient(135deg, #b55b2c, #7a3010);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(138, 61, 24, 0.40);
}

.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.page-main {
  padding-top: 100px;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 28px 20px 32px;
  border-top: 1px solid #d4d6da;
  border-left: 1px solid #dcdee2;
  border-right: 1px solid #dcdee2;
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  /* Classy light grey — warm stone, not cold blue */
  background: linear-gradient(160deg, #f0eeeb, #e8e6e2);
  box-shadow: 0 -8px 32px rgba(60, 55, 50, 0.10);
  color: #6b6860;
}

/* Subtle top accent line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(0,109,111,0.40), rgba(181,91,44,0.28), transparent);
  pointer-events: none;
}

.site-footer strong {
  color: #1e1d1b;
  font-family: var(--latin);
  font-size: 1.08rem;
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0;
  color: #7a7870;
  font-size: 0.88rem;
}

.site-footer div:last-child {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  font-weight: 900;
  align-items: center;
}

/* Regular nav links in footer */
.site-footer a {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  font-size: 0.78rem;
  line-height: 1.1;
  white-space: nowrap;
  color: #4a4845;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  border-radius: 99px;
  background: var(--primary);
  transform: scaleX(0.30);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-footer a:nth-child(2)::after {
  background: var(--accent);
}

.site-footer a:nth-child(2) {
  color: #6b3a20;
}

.site-footer a:hover {
  color: #1e1d1b;
  transform: translateY(-2px);
}

.site-footer a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(250, 248, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    border-radius: var(--radius);
    padding: 13px;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-footer div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .site-footer a {
    justify-content: flex-start;
    font-size: 0.86rem;
  }

  /* Instagram pill spans full width on very small screens */
  .footer-insta {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (min-width: 861px) {
  .site-header {
    top: 18px;
    width: var(--container);
    min-height: 76px;
    gap: 24px;
    padding: 12px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .section {
    padding: 96px 0;
  }

  .page-main {
    padding-top: 124px;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 52px;
    padding: 24px;
  }

  .site-footer div:last-child {
    display: flex;
    width: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
  }

  .site-footer a {
    font-size: 0.9rem;
  }
}
