*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1f3a;
  --navy2: #1e3a5f;
  --yellow: #f5c518;
  --ylw2: #d4a800;
  --light: #f4f6fa;
  --mid: #6b7a8d;
  --white: #ffffff;
  --text: #1a2537;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding: 2px 0 2px 10px;
  margin-bottom: 14px;
}
.tag.dark {
  color: var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--ylw2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.section-title span {
  color: var(--ylw2);
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--yellow);
}
.topbar-badge {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.1);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.logo-name span {
  color: var(--ylw2);
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ylw2);
}
.nav-cta {
  margin-left: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #e8edf3;
  padding: 16px 24px 20px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid #eef1f6;
}
.mobile-menu a:hover {
  color: var(--ylw2);
}
.mobile-menu .btn-primary:hover {
  color: var(--navy2) !important;
}
.mobile-menu .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

/* ── PAGE HERO (inner pages — shorter, different bg treatment) ── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(11, 31, 58, 0.97) 50%,
      rgba(30, 58, 95, 0.85) 100%
    ),
    url("/Images/hero2.avif") center/cover no-repeat;
}
/* diagonal accent stripe — thinner than homepage hero */
.page-hero::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.6;
  transform: skewX(-14deg);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb span {
  color: var(--yellow);
}
.breadcrumb-sep {
  opacity: 0.4;
}
.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
  max-width: 580px;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.meta-chip {
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
}

/* ── STORY SECTION ── */
.story {
  padding: 96px 0;
  background: var(--white);
}

.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: url("/Images/about-img.png") center/cover no-repeat;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.story-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy2) 60%,
    #0d2d52 100%
  );
  opacity: 0.5;
  z-index: 1;
}

.story-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(245, 197, 24, 0.08), transparent);
  z-index: 2;
}

.story-img svg {
  width: 72px;
  height: 72px;
  opacity: 0.2;
  position: relative;
  z-index: 3;
}

.story-img-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 3;
}
/* floating credential card */
.cred-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  padding: 18px 22px;
  border-radius: 3px;
  box-shadow: 0 10px 36px rgba(245, 197, 24, 0.3);
  min-width: 180px;
  z-index: 4;
}
.cred-float-title {
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.6);
  margin-bottom: 6px;
}
.cred-float-item {
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cred-float-item + .cred-float-item {
  margin-top: 5px;
}
.cred-float-item::before {
  content: "⚡";
  font-size: 0.75rem;
}
/* side year bar */
.year-bar {
  position: absolute;
  top: 32px;
  left: -25px;
  background: var(--navy);
  color: var(--yellow);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 10px;
  border-radius: 2px;
}
.story-text .section-title {
  margin-bottom: 18px;
}
.story-text p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 18px;
}
.story-text p strong {
  color: var(--text);
  font-weight: 600;
}

/* ── CREDENTIALS BAND ── */
.creds-band {
  background: var(--light);
  padding: 0;
  overflow: hidden;
}
.creds-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cred-panel {
  padding: 52px 40px;
  border-right: 1px solid #e2e8f0;
  position: relative;
}
.cred-panel:last-child {
  border-right: none;
}
.cred-panel-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cred-panel-icon svg {
  width: 28px;
  height: 28px;
}
.cred-panel h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.cred-panel p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.72;
}
.cred-panel-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cred-panel:hover .cred-panel-accent {
  transform: scaleX(1);
}
.cred-panel:hover .cred-panel-icon {
  background: var(--yellow);
}
.cred-panel:hover .cred-panel-icon svg path,
.cred-panel:hover .cred-panel-icon svg polygon,
.cred-panel:hover .cred-panel-icon svg rect {
  stroke: var(--navy);
}

/* ── MISSION + VALUES ── */
.mission {
  padding: 96px 0;
  background: var(--white);
}
.mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.mission-left .section-title {
  margin-bottom: 18px;
}
.mission-left > p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.mission-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--yellow);
  background: var(--light);
  border-radius: 0 3px 3px 0;
}
.mission-quote p {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
  font-style: italic;
}
.mission-quote cite {
  display: block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--mid);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #e8edf3;
}
.value-item:last-child {
  border-bottom: none;
}
.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.value-item:hover .value-icon {
  background: var(--yellow);
}
.value-icon svg {
  width: 22px;
  height: 22px;
}
.value-title {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.value-desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── EXPERIENCE TIMELINE ── */
.timeline-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.timeline-head {
  text-align: center;
  margin-bottom: 64px;
}
.timeline-head .section-title {
  color: var(--white);
}
.timeline-head .section-title span {
  color: var(--yellow);
}
.timeline-head p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-top: 12px;
}
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(245, 197, 24, 0.2);
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-left {
  text-align: right;
  padding-right: 36px;
  padding-top: 4px;
}
.tl-right {
  text-align: left;
  padding-left: 36px;
  padding-top: 4px;
}
.tl-empty {
  grid-column: 1;
}
.tl-left.empty,
.tl-right.empty {
}
.tl-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}
.tl-dot {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.3);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.tl-year {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.tl-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
/* alternating: odd left, even right */
.tl-item.right .tl-left {
  display: none;
}
.tl-item.right .tl-center {
  grid-column: 2;
}
.tl-item.right .tl-right {
  grid-column: 3;
}
.tl-item.left .tl-right {
  display: none;
}
.tl-item.left .tl-left {
  grid-column: 1;
}
.tl-item.left .tl-center {
  grid-column: 2;
}

/* ── CERTIFICATIONS / TRADE STANDARDS ── */
.standards {
  padding: 96px 0;
  background: var(--light);
}
.standards-head {
  text-align: center;
  margin-bottom: 56px;
}
.standards-head .section-title {
  margin-bottom: 12px;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.std-card {
  background: var(--white);
  border-radius: 3px;
  padding: 36px 30px;
  border-top: 4px solid transparent;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.std-card:hover {
  border-top-color: var(--yellow);
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.09);
  transform: translateY(-4px);
}
.std-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.std-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.std-card:hover .std-icon {
  background: var(--yellow);
}
.std-icon svg {
  width: 24px;
  height: 24px;
}
.std-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.std-card p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── PERSONAL COMMITMENT ── */
.commitment {
  padding: 96px 0;
  background: var(--white);
}
.commitment .container {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: center;
}
.commitment-text .section-title {
  margin-bottom: 18px;
}
.commitment-text > p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 16px;
}
.commitment-text > p strong {
  color: var(--text);
  font-weight: 600;
}
.commitment-text .btn {
  margin-top: 10px;
}
.commit-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commit-card {
  background: var(--light);
  border-radius: 3px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.commit-card:hover {
  border-left-color: var(--yellow);
  background: #eef1f7;
}
.commit-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commit-card-icon svg {
  width: 20px;
  height: 20px;
}
.commit-card h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.commit-card p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--yellow);
  padding: 60px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.cta-band-text p {
  font-size: 0.95rem;
  color: rgba(11, 31, 58, 0.65);
  margin-top: 6px;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #07172a;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 16px 0 20px;
}
.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-cred::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.footer-links a::before {
  content: "›";
  color: var(--yellow);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--yellow);
}
.fci-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.fci-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon svg {
  width: 15px;
  height: 15px;
}
.fci-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.fci-text a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.fci-text a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--yellow);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .story .container,
  .mission .container,
  .commitment .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .creds-band .container {
    grid-template-columns: 1fr;
  }
  .cred-panel {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
  .cred-panel:last-child {
    border-bottom: none;
  }
  .standards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 16px;
  }
  .tl-item {
    grid-template-columns: 24px 1fr;
  }
  .tl-item.left .tl-left,
  .tl-item.right .tl-left {
    display: none;
  }
  .tl-item.left .tl-center,
  .tl-item.right .tl-center {
    grid-column: 1;
  }
  .tl-item.left .tl-right,
  .tl-item.right .tl-right {
    display: block;
    grid-column: 2;
    text-align: left;
    padding-left: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .topbar-left {
    display: none;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .year-bar {
    display: none;
  }
  .cred-float {
    bottom: -14px;
    right: 10px;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .cta-band .container {
    flex-direction: column;
  }
  .cta-band-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
