:root {
  --bg-ink: #07183c;
  --bg-ink-2: #0c2f73;
  --bg-cream: #f7f3ea;
  --bg-paper: #fffcf7;
  --text-dark: #141416;
  --text-soft: #54607a;
  --line: #d6d9e5;
  --accent: #54a2ff;
  --accent-2: #2f61ff;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --shadow-soft: 0 20px 45px rgba(8, 18, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-dark);
  background: var(--bg-paper);
  line-height: 1.5;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: #ffffff;
  color: #000000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section-dark {
  color: #f5f8ff;
}

.section-light {
  color: var(--text-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 234, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 28, 56, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  background: #a7d5e4;
}

.brand-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  color: #2d3750;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

.dropdown-trigger {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.dropdown-trigger::after {
  content: " \25BE";
  font-size: 0.78rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #d9dfed;
  border-radius: 12px;
  box-shadow: 0 18px 32px rgba(20, 32, 71, 0.15);
  padding: 0.45rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 45;
}

.dropdown-menu a {
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #edf3ff;
  color: #0f56da;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0f56da;
}

.site-nav a[aria-current="page"] {
  color: #124ec8;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0.35rem;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1b2133;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(84, 162, 255, 0.2), transparent 40%),
    radial-gradient(circle at 82% 22%, rgba(72, 112, 255, 0.2), transparent 44%),
    linear-gradient(135deg, var(--bg-ink) 20%, var(--bg-ink-2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.25rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(84, 162, 255, 0.2), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(72, 112, 255, 0.18), transparent 38%),
    linear-gradient(135deg, var(--bg-ink) 15%, var(--bg-ink-2) 100%);
}

.page-hero-inner {
  padding: 4.3rem 0 3.5rem;
  max-width: 74ch;
  position: relative;
  z-index: 1;
}

.page-hero-inner h1 {
  max-width: 19ch;
}

.page-hero-inner p {
  max-width: 62ch;
  color: #d3def8;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(117, 170, 255, 0.18);
  color: #d7e8ff;
}

.section-light .eyebrow {
  background: #dfe6f7;
  color: #344973;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
  max-width: 14ch;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.2rem;
}

.accent {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: #d4def8;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #4f7eff, #2f61ff);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(32, 81, 235, 0.38);
}

.btn-ghost {
  border-color: rgba(207, 220, 255, 0.45);
  color: #deebff;
}

.btn-small {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: linear-gradient(120deg, #4f7eff, #2f61ff);
  color: #ffffff;
  letter-spacing: 0.03em;
}

.impact-card {
  background: rgba(255, 255, 255, 0.97);
  color: #101935;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(102, 115, 160, 0.2);
}

.icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #4f7eff, #71b5ff);
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.impact-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 0.85rem;
}

.impact-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  color: #2f3b5b;
}

.impact-card li + li {
  margin-top: 0.45rem;
}

.text-link {
  color: #255dde;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(202, 216, 255, 0.18);
  border-bottom: 1px solid rgba(202, 216, 255, 0.18);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 2.2rem;
  padding: 0.95rem 0;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #c5d7ff;
  animation: slide 28s linear infinite;
}

.story {
  background: var(--bg-cream);
  padding: 5.2rem 0;
}

.mission-callout {
  border: 1px solid #d8deed;
  border-radius: var(--radius-xl);
  background: #ffffff;
  padding: 1.8rem;
  box-shadow: 0 10px 24px rgba(16, 23, 46, 0.06);
}

.mission-callout h2 {
  max-width: 20ch;
}

.mission-callout p {
  max-width: 68ch;
  color: #4f5d7c;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.story-list,
.story-copy {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e4dfd5;
  border-radius: var(--radius-xl);
  padding: 1.55rem;
}

.story-list ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
}

.story-list li + li {
  margin-top: 0.8rem;
}

blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid #cad2e9;
  font-style: italic;
  color: #4d5773;
}

.story-copy > p {
  margin-bottom: 1.35rem;
}

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

.value-grid article {
  border: 1px solid #e3e6f2;
  border-radius: var(--radius-lg);
  background: #fbfdff;
  padding: 1rem;
}

.value-grid h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.value-grid p {
  margin: 0;
  font-size: 0.94rem;
  color: #4f5a78;
}

.services {
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(140, 182, 255, 0.28), transparent 34%),
    var(--bg-paper);
}

.section-title {
  max-width: 16ch;
  margin-bottom: 1.8rem;
}

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

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid #dde2ef;
  background: #ffffff;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(16, 23, 46, 0.06);
}

.service-card p {
  margin: 0;
  color: #4e5a76;
}

.team {
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(140, 182, 255, 0.24), transparent 34%),
    var(--bg-paper);
}

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

.team-card {
  border-radius: var(--radius-xl);
  border: 1px solid #dde2ef;
  background: #ffffff;
  padding: 0 0 1rem;
  box-shadow: 0 10px 25px rgba(16, 23, 46, 0.06);
}

.team-photo-wrap {
  position: relative;
}

.team-photo-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  display: block;
  text-align: left;
  cursor: pointer;
}

.team-photo-trigger:focus-visible {
  outline: 2px solid #4f7eff;
  outline-offset: -2px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.team-photo {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 0;
  background: #eff3fb;
}

.team-photo-dhruv {
  object-position: center 20%;
}

.team-social-tab {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid #d6ddf0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 24px rgba(14, 28, 64, 0.2);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.team-card:hover .team-social-tab,
.team-card:focus-within .team-social-tab,
.team-card.social-open .team-social-tab {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team-social-tab {
  justify-content: center;
}

.team-social-tab a.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #c9d4ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1d2f56;
  background: #ffffff;
}

.team-social-tab a.social-icon.instagram {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.team-social-tab a.social-icon.instagram svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.team-social-tab a.social-icon.instagram .insta-dot {
  fill: currentColor;
  stroke: none;
}

.team-social-tab a.social-icon.linkedin {
  font-size: 0.82rem;
  text-transform: lowercase;
}

.team-social-tab a.social-icon:hover,
.team-social-tab a.social-icon:focus-visible {
  color: #114dc7;
  border-color: #9bb6f8;
  background: #eef4ff;
}

.team-copy {
  padding: 1rem 1rem 0;
}

.team-copy h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.team-copy p {
  margin: 0;
  color: #4f5d7c;
}

.team-bio {
  display: block;
}

.mission {
  padding: 4.8rem 0;
  background: var(--bg-paper);
}

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

.mission-card {
  border-radius: var(--radius-xl);
  border: 1px solid #dde2ef;
  background: #ffffff;
  padding: 1.4rem;
  box-shadow: 0 10px 25px rgba(16, 23, 46, 0.06);
}

.mission-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.mission-card p,
.mission-card li {
  color: #4f5d7c;
}

.mission-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.mission-card li + li {
  margin-top: 0.55rem;
}

.cta {
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(97, 144, 255, 0.26), transparent 38%),
    linear-gradient(140deg, #081a43, #14377f);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.cta-wrap p {
  max-width: 44ch;
  color: #d3ddf8;
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  color: #12203f;
  border: 1px solid #bdc7df;
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  font-weight: 800;
  color: #253860;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ced4e5;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  font: inherit;
}

.contact-form select {
  width: 100%;
  border: 1px solid #ced4e5;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  font: inherit;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid #4f7eff;
  outline-offset: 1px;
}

.form-note {
  margin: 0.65rem 0 0;
  color: #4f5d7c;
  font-size: 0.86rem;
}

.site-footer {
  background: #f1eadc;
  color: #27314b;
  border-top: 1px solid #d9d0c1;
}

.footer-wrap {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-bands {
  padding: 0 0 4.8rem;
}

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

.band-card {
  border-radius: var(--radius-lg);
  border: 1px solid #dde2ef;
  background: #ffffff;
  padding: 1.2rem;
}

.band-card p {
  margin: 0;
  color: #4e5a76;
}

.cta-panel {
  border: 1px solid rgba(179, 198, 245, 0.45);
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.contact-page {
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(140, 182, 255, 0.24), transparent 35%),
    var(--bg-paper);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-info {
  border-radius: var(--radius-xl);
  border: 1px solid #dde2ef;
  background: #ffffff;
  padding: 1.3rem;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-info ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.contact-info li + li {
  margin-top: 0.55rem;
}

.contact-note {
  margin: 0;
  color: #4f5d7c;
}

.articles-page {
  padding: 4.8rem 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(140, 182, 255, 0.24), transparent 35%),
    var(--bg-paper);
}

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

.article-card {
  border-radius: var(--radius-xl);
  border: 1px solid #dde2ef;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(16, 23, 46, 0.06);
  overflow: hidden;
}

.article-card-link {
  display: block;
  height: 100%;
}

.article-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #eff3fb;
}

.article-card-body {
  padding: 1.2rem;
}

.article-card-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  margin-bottom: 0.75rem;
}

.article-card-body p {
  margin: 0 0 1rem;
  color: #4f5d7c;
}

.article-card-meta,
.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  color: #66708a;
  font-weight: 600;
}

.article-author {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.article-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #dde5fa;
}

.article-detail {
  background: #ebedf1;
  padding: 3.6rem 0 4.8rem;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid #dbe0ee;
  background: #ffffff;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(16, 23, 46, 0.07);
}

.article-shell h1 {
  max-width: 100%;
  text-transform: none;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.article-detail-meta {
  margin-bottom: 1.1rem;
}

.article-hero-image {
  width: 100%;
  height: min(420px, 42vw);
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.3rem;
}

.article-content p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: #2f3a56;
}

.article-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.works-cited {
  margin: 0;
  padding-left: 1.1rem;
  color: #3f4964;
}

.works-cited li + li {
  margin-top: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .cta-wrap,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .team-photo {
    height: 290px;
  }

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

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

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

  .service-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    right: 4vw;
    top: 72px;
    width: min(280px, 92vw);
    background: #ffffff;
    border: 1px solid #d9dfed;
    border-radius: 14px;
    box-shadow: 0 18px 32px rgba(20, 32, 71, 0.15);
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

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

  .site-nav a {
    padding: 0.7rem;
    border-radius: 10px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 0.7rem;
    border-radius: 10px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0.2rem 0 0.1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    padding-left: 1.3rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #edf3ff;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .page-hero-inner {
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .article-shell {
    padding: 1.2rem;
  }

  .article-hero-image {
    height: 250px;
  }

  .team-photo {
    height: 260px;
  }

  .team-social-tab {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.62rem 0.72rem;
    gap: 0.55rem;
  }

  .team-social-tab a {
    font-size: 0.8rem;
  }

  .team-photo-dhruv {
    object-position: center 14%;
  }

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

  .cta-panel .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
