:root {
  --navy: #021C66;
  --navy-deep: #000a2f;
  --gold: #C9A227;
  --gold-soft: #f3d27a;
  --text-dark: #0c1220;
  --text-muted: #616a7f;
  --bg-page: #050816;
  --bg-elevated: #ffffff;
  --bg-alt: #f3f5fb;
  --border-subtle: #dde2f2;
  --max-width: 1120px;

  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;

  --shadow-soft: 0 24px 60px rgba(5, 10, 40, 0.35);
  --shadow-subtle: 0 16px 40px rgba(9, 16, 48, 0.16);
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: #03071F;;
  line-height: 1.6;
}

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Rounded", "SF Pro Rounded", Arial, sans-serif;
  letter-spacing: 0.03em;
  margin: 0 0 0.6rem;
  color: #0c1024;
}

p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a[href^="mailto:"] {
  color: var(--gold);
}

a[href^="mailto:"]:hover {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* Layout helpers */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
  padding-top: 20px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(5, 12, 50, 0.96), rgba(5, 12, 50, 0.9));
  backdrop-filter: blur(16px);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand--text-only {
  padding: 0.3rem 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f7ff;
}

.brand-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c7cff8;
}

/* Nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  color: #d5dcff;
  text-decoration: none;
  padding-bottom: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
  transition: width 0.15s ease-out;
}

.site-nav a:hover::after {
  width: 50%;
}

.site-nav a.active {
  color: #ffffff;
}

.site-nav a.active::after {
  width: 100%;
}

/* Buttons */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.7rem;
  border-radius: 999px;
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    background-position 0.2s ease,
    background-color 0.12s ease,
    color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background-image: linear-gradient(135deg, var(--gold), #e3c560, var(--gold-soft));
  background-size: 140% 140%;
  color: #12121a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  background: rgba(4, 13, 60, 0.6);
  color: #f4f5ff;
  border: 1px solid rgba(208, 215, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(10, 21, 90, 0.9);
  text-decoration: none;
}

.btn-calendly {
  background: #ffffff;
  color: #0c1024;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-calendly:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: #0c1024;
}

.calendly-button-wrapper {
  display: flex;
  justify-content: center;
}

/* Sections */

.section {
  padding: 3.6rem 0;
}

.section--alt {
  background: radial-gradient(circle at top, #111630 0, #050816 55%, #02030a 100%);
}

.section-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-xl);
  padding: 2.4rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  color: #f7f8ff;
}

.section-heading p {
  max-width: 640px;
  color: #c3cae8;
}

/* Hero */

.hero {
  padding: 0.2rem 0 2.2rem;
  position: relative;
  overflow: hidden;
  background: #03071F;
}


  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.65;
  z-index: -1;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.3), transparent 60%);
  top: -80px;
  left: -60px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(72, 119, 255, 0.45), transparent 60%);
  bottom: -60px;
  right: -40px;
}

.hero-shell {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.15rem 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.0rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -3.1rem;
  margin-bottom: -0.15rem;
}

.hero-logo-img {
  width: min(550px, 87vw);
  display: block;
  height: auto;
  max-width: 100%;
}
.hero-text-block {
  text-align: center;
  max-width: 660px;
  margin-top: -5rem;
}

.hero-text-block .btn-row {
  justify-content: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #cfd7ff;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.45rem);
  margin-bottom: 0.7rem;
  color: #ffffff;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #dde4ff;
  margin-bottom: 1.6rem;
}

.hero-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a8b7ff;
  margin-top: 1.3rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 1.9rem;
}

.card-grid--centered {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background-color: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    border-color 0.12s ease-out;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(201, 162, 39, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(7, 16, 60, 0.36);
  border-color: rgba(201, 162, 39, 0.6);
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
  color: #050818;
}

.card-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

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

.card li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* Chip */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  background: linear-gradient(135deg, #020b3c, #071553);
  color: #f3f5ff;
  border: 1px solid rgba(221, 227, 255, 0.4);
  margin-bottom: 0.8rem;
}

/* Education list */

.article-list {
  list-style: none;
  padding: 0;
  margin: 1.9rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.article-item {
  padding: 1.1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 225, 245, 0.9);
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  box-shadow: 0 14px 30px rgba(9, 16, 48, 0.08);
}

.article-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111428;
}

.article-meta {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: var(--navy);
  font-weight: 600;
}

.article-link:hover {
  text-decoration: none;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.about-layout .section-heading h2 {
  color: #f7f8ff;
}

.about-layout .section-heading p {
  color: #dde4ff;
}

.about-layout > div h3 {
  color: #f7f8ff;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.about-layout > div p {
  color: #dde4ff;
  margin-bottom: 1rem;
}

/* Centered about page styles */
.section .section-heading--center ~ h3 {
  color: #f7f8ff;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.section .section-heading--center ~ p {
  color: #dde4ff;
  margin-bottom: 1rem;
}

.about-main {
  background: rgba(7, 12, 45, 0.95);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.about-main p {
  color: #dde4ff;
}

.about-main h3 {
  color: #f7f8ff;
}

.about-callout {
  background: radial-gradient(circle at top, #1b2755 0, #050922 60%);
  color: #e2e7ff;
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-callout h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  color: #f2f4ff;
}

.about-callout ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0.5rem;
}

.about-callout li {
  font-size: 0.9rem;
}

/* Contact */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.5fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.form-panel {
  background: rgba(7, 12, 45, 0.95);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.form-panel .section-heading h2 {
  color: #f7f8ff;
}

.form-panel .section-heading p {
  color: #c3cae8;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #dde3ff;
}

.form-label span {
  color: #f7b2a2;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(198, 208, 244, 0.9);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  background: rgba(0, 4, 18, 0.9);
  color: #f4f6ff;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #7e88a8;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.6);
}

.form-textarea {
  min-height: 130px;
}

.contact-side {
  background: linear-gradient(145deg, #02071e, #0c163e);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(234, 239, 255, 0.16);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  color: #e2e6ff;
}

.contact-side h3 {
  color: #f4f6ff;
}

.contact-side p,
.contact-side li {
  color: #c8cff0;
}

.contact-side a {
  color: #f7f0c0;
}

.contact-info-section {
  margin-bottom: 2rem;
}

.contact-info-section h3 {
  color: #f4f6ff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.contact-info-section p {
  color: #c8cff0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-side img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border: 1px solid rgba(234, 239, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* PAE Slider Icon */
.pae-slider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pae-slider-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

/* PAE Loop Icon */
.pae-loop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pae-loop-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

/* Footer */

.site-footer {
  background-color: #020519;
  color: #ffffff;
  padding: 1.6rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: #c4c9e5;
}

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

.footer-links a {
  color: #e0e5ff;
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Utilities */

.section-intro {
  max-width: 640px;
}

.policy-meta {
  font-size: 0.92rem;
  color: #c7d0ff;
  margin-bottom: 1.6rem;
}

.policy-grid {
  display: grid;
  gap: 1.4rem;
}

.policy-card {
  background: rgba(6, 12, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  color: #dbe3ff;
  box-shadow: var(--shadow-soft);
}

.policy-card h3 {
  margin-bottom: 0.5rem;
  color: #f4f6ff;
}

.policy-card p,
.policy-card li {
  color: #c7cff1;
}

.policy-card a {
  color: var(--gold);
  font-weight: 600;
}

.policy-card a:hover {
  text-decoration: underline;
}

.policy-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

/* Mobile-specific improvements */

/* Article page mobile styles */
@media (max-width: 720px) {
  .article-content {
    padding: 1.5rem 1rem !important;
  }

  .article-header {
    margin-bottom: 2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .article-header h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.3 !important;
  }

  .article-meta-info {
    flex-direction: column !important;
    gap: 0.8rem !important;
    font-size: 0.85rem !important;
  }

  .article-body {
    padding: 1.5rem 1.2rem !important;
  }

  .article-body p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }

  .article-body h2 {
    font-size: 1.3rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.8rem !important;
  }

  .article-body h3 {
    font-size: 1.15rem !important;
    margin-top: 1.2rem !important;
    margin-bottom: 0.7rem !important;
  }

  .article-body ul,
  .article-body ol {
    margin-left: 1rem !important;
    padding-left: 0.8rem !important;
  }

  .article-body li {
    font-size: 0.9rem !important;
    margin-bottom: 0.6rem !important;
  }

  .highlight-box {
    padding: 1.2rem !important;
    margin: 1.5rem 0 !important;
  }

  .highlight-box p {
    font-size: 0.9rem !important;
  }

  .character-intro {
    padding: 1.2rem !important;
    margin: 1.2rem 0 !important;
  }

  .article-image {
    margin: 1.5rem 0 !important;
  }

  .article-image-caption {
    font-size: 0.85rem !important;
  }
}

/* Improve touch targets and prevent zoom on inputs */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }

  a,
  button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.policy-list li {
  display: flex;
  gap: 0.4rem;
}

.policy-list li::before {
  content: "•";
  color: var(--gold);
}

@media (min-width: 820px) {
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-card--wide {
    grid-column: span 2;
  }
}

/* Responsive */

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--centered {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .header-inner {
    height: 70px;
  }

  main {
    padding-top: 70px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: block;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.8rem;
    -webkit-tap-highlight-color: transparent;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(2, 7, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      max-height 0.25s ease-out,
      opacity 0.25s ease-out,
      transform 0.25s ease-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .site-nav.open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-shell {
    padding: 0;
  }

  .hero-grid {
    gap: 0.5rem;
  }

  .hero-logo-wrap {
    margin-top: -2rem;
    margin-bottom: 0.5rem;
  }

  .hero-logo-img {
    width: min(400px, 90vw);
  }

  .hero-text-block {
    margin-top: -3rem;
    padding: 0 0.5rem;
  }

  .hero h1 {
    white-space: normal;
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
  }

  .hero-meta {
    font-size: 0.75rem;
    margin-top: 1rem;
    line-height: 1.4;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    min-height: 48px;
    font-size: 0.95rem;
    -webkit-tap-highlight-color: transparent;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    line-height: 1.3;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .card {
    padding: 1.4rem 1.2rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card-tagline {
    font-size: 0.88rem;
  }

  .card li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .engagement-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem !important;
  }

  .engagement-icon {
    margin: 0 auto;
  }

  .engagement-content {
    padding: 0 0.5rem;
  }

  .engagement-item h3 {
    font-size: 1.2rem !important;
  }

  .engagement-item p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    height: 65px;
    padding: 0 1rem;
  }

  main {
    padding-top: 65px;
  }

  .site-nav {
    top: 65px;
    padding: 0.8rem 1rem 1.2rem;
  }

  .brand-name {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-logo-wrap {
    margin-top: -1.5rem;
  }

  .hero-logo-img {
    width: min(350px, 85vw);
  }

  .hero-text-block {
    margin-top: -2.5rem;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 0.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }

  .hero-meta {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .section {
    padding: 2rem 0;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    margin-bottom: 0.8rem;
  }

  .section-intro {
    font-size: 0.9rem;
  }

  .card {
    padding: 1.2rem 1rem;
  }

  .card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
  }

  .card-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .card ul {
    padding-left: 1rem;
  }

  .card li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .btn {
    padding: 0.85rem 1.3rem;
    font-size: 0.9rem;
  }

  .article-item {
    padding: 1rem 0.9rem;
  }

  .article-title {
    font-size: 1rem;
  }

  .article-meta {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .article-link {
    font-size: 0.85rem;
  }

  .form-grid {
    gap: 1.5rem;
  }

  .form-panel {
    padding: 1.5rem 1.2rem;
  }

  .form-field {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .contact-side {
    padding: 1.5rem 1.2rem;
  }

  .contact-info-section {
    margin-bottom: 1.5rem;
  }

  .contact-info-section h3 {
    font-size: 1.1rem;
  }

  .contact-info-section p {
    font-size: 0.9rem;
  }

  .contact-side img {
    max-width: 180px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.78rem;
    text-align: left;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.78rem;
  }

  .about-main,
  .about-callout {
    padding: 1.5rem 1.2rem;
  }

  .about-layout > div h3 {
    font-size: 1.1rem;
  }

  .about-layout > div p {
    font-size: 0.9rem;
  }
}

@media (min-width: 960px) {
  .hero {
    padding: 0.4rem 0 2.4rem;
  }

  .hero-shell {
    padding: 0.15rem 0 0;
  }
}