/* ===== Design tokens & base (no Tailwind) ===== */
:root {
  --csal-navy: #1a2f5f;
  --csal-navy-deep: #0f1f47;
  --csal-accent: #a8324a;
  --csal-accent-hover: #8e2a3f;
  --csal-muted: #6b7280;
  --csal-content-max: 1240px;
  --csal-header-h: 60px;
  --csal-scroll-offset: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body.csal-body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: #1a2f5f;
  color: var(--csal-navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

/* In-page anchors clear sticky header */
.csal-scroll-anchor {
  scroll-margin-top: var(--csal-scroll-offset);
}

/* Skip link */
.csal-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.csal-skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 300;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-radius: 4px;
  background: #fff;
  color: var(--csal-navy);
  box-shadow: 0 4px 24px rgba(10, 23, 51, 0.2);
  outline: 2px solid var(--csal-accent);
  outline-offset: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Site header */
.csal-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2f5f;
  background: var(--csal-navy);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.csal-site-header__inner {
  max-width: var(--csal-content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
  .csal-site-header__inner {
    padding: 0.75rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .csal-site-header__inner {
    padding: 0.75rem 2rem;
  }
}

.csal-site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
}

.csal-site-header__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.csal-site-header__mark svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.csal-site-header__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 640px) {
  .csal-site-header__name {
    font-size: 1.5rem;
  }
}

.csal-site-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.125rem;
}

@media (min-width: 1280px) {
  .csal-site-nav {
    display: flex;
  }
}

.csal-site-nav__link {
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.csal-site-nav__link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.csal-site-nav__link--current {
  color: #fff;
  border-bottom-color: #fff;
}

.csal-site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.csal-site-header__collab {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  background: #a8324a;
  background: var(--csal-accent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.csal-site-header__collab:hover {
  background: var(--csal-accent-hover);
}

@media (min-width: 640px) {
  .csal-site-header__collab {
    display: inline-flex;
  }
}

.csal-site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.csal-site-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.csal-site-header__menu-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.csal-site-header__menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1280px) {
  .csal-site-header__menu-btn {
    display: none;
  }
}

/* Mobile drawer */
#mobile-drawer.csal-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}

@media (min-width: 1280px) {
  #mobile-drawer.csal-drawer {
    display: none;
  }
}

#mobile-drawer.csal-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.csal-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 71, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#mobile-drawer.is-open .csal-drawer__backdrop {
  opacity: 1;
}

.csal-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: min(100%, 320px);
  background: #1a2f5f;
  background: var(--csal-navy);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#mobile-drawer.is-open .csal-drawer__panel {
  transform: translateX(0);
}

.csal-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.csal-drawer__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.csal-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.csal-drawer__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.csal-drawer__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.csal-drawer__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.csal-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  padding: 0.75rem 0.75rem 1rem;
}

.csal-drawer__nav a {
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: background 0.2s ease;
}

.csal-drawer__nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.csal-drawer__nav a.csal-drawer__nav-link--current {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--csal-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.csal-drawer__foot {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.csal-drawer__collab {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #a8324a;
  background: var(--csal-accent);
  transition: background 0.2s ease;
}

.csal-drawer__collab:hover {
  background: var(--csal-accent-hover);
}

/* ===== C-SAL HERO SECTION (full-bleed + gradient overlay) ===== */

.csal-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background-color: #0a1733;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 23, 51, 0.95) 0%,
      rgba(10, 23, 51, 0.88) 35%,
      rgba(15, 31, 71, 0.55) 60%,
      rgba(15, 31, 71, 0.25) 100%
    ),
    url("../images/hero.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.csal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.csal-hero__watermark {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  font-family: "Noto Sans Devanagari", serif;
  font-size: 320px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.csal-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 120px) clamp(24px, 5vw, 80px);
}

.csal-hero__content {
  max-width: 620px;
}

.csal-hero__eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.csal-hero__accent-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #c9a961;
  margin-right: 16px;
  flex-shrink: 0;
}

.csal-hero__eyebrow-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a961;
}

.csal-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.csal-hero__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px 0;
}

.csal-hero__divider {
  width: 64px;
  height: 3px;
  background: #a8324a;
  margin: 0 0 28px 0;
}

.csal-hero__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.csal-hero__description {
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 0 44px 0;
}

.csal-hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.csal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.csal-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
}

.csal-btn--outline:hover {
  background: #ffffff;
  color: #0a1733;
}

.csal-btn--primary {
  background: #a8324a;
  color: #ffffff;
  border-color: #a8324a;
  box-shadow: 0 4px 20px rgba(168, 50, 74, 0.35);
}

.csal-btn--primary:hover {
  background: #8a2840;
  border-color: #8a2840;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 50, 74, 0.45);
}

.csal-hero__badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.csal-hero__dot {
  color: #c9a961;
}

.csal-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.csal-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 169, 97, 0.8), transparent);
  animation: csalScrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes csalScrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1024px) {
  .csal-hero__title {
    font-size: 88px;
  }

  .csal-hero__watermark {
    font-size: 240px;
  }

  .csal-hero__container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 768px) {
  .csal-hero {
    min-height: 80vh;
    background-image:
      linear-gradient(
        90deg,
        rgba(10, 23, 51, 0.92) 0%,
        rgba(10, 23, 51, 0.85) 100%
      ),
      url("../images/hero.webp");
    background-position: 70% center;
  }

  .csal-hero__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .csal-hero__title {
    font-size: 64px;
  }

  .csal-hero__subtitle {
    font-size: 20px;
  }

  .csal-hero__tagline {
    font-size: 20px;
  }

  .csal-hero__description {
    font-size: 16px;
  }

  .csal-hero__watermark {
    font-size: 180px;
    left: -20px;
  }

  .csal-hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .csal-btn {
    width: 100%;
    justify-content: center;
  }

  .csal-hero__badges {
    font-size: 11px;
    gap: 8px;
  }

  .csal-hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .csal-hero__title {
    font-size: 52px;
  }

  .csal-hero__eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* ===== C-SAL ABOUT / WHO WE ARE SECTION ===== */

.csal-about {
  position: relative;
  padding: 120px 0 100px;
  background: #faf7f2;
  overflow: hidden;
}

.csal-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.csal-about__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  z-index: 1;
}

.csal-about__header {
  margin-bottom: 48px;
}

.csal-about__eyebrow {
  display: flex;
  align-items: center;
}

.csal-about__accent-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #a8324a;
  margin-right: 16px;
  flex-shrink: 0;
}

.csal-about__eyebrow-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8324a;
}

.csal-about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.csal-about__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #0a1733;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.csal-about__title-accent {
  color: #a8324a;
  font-style: italic;
  font-weight: 500;
}

.csal-about__divider {
  width: 64px;
  height: 3px;
  background: #a8324a;
  margin-bottom: 28px;
}

.csal-about__lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: #1a2f5f;
  margin: 0 0 20px 0;
}

.csal-about__body {
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a5568;
  margin: 0 0 32px 0;
}

.csal-about__points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.csal-about__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a2f5f;
}

.csal-about__point-icon {
  color: #c9a961;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.csal-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #0a1733;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.csal-about__cta:hover {
  background: #a8324a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 50, 74, 0.3);
}

.csal-about__cta svg {
  transition: transform 0.3s ease;
}

.csal-about__cta:hover svg {
  transform: translateX(4px);
}

.csal-about__visual {
  position: relative;
}

.csal-about__visual-card {
  position: relative;
  background: linear-gradient(135deg, #0a1733 0%, #1a2f5f 100%);
  border-radius: 4px;
  padding: 56px 48px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(10, 23, 51, 0.2);
  overflow: hidden;
}

.csal-about__visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #c9a961, transparent);
  z-index: 2;
}

.csal-about__visual-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 70% at 100% 0%, rgba(201, 169, 97, 0.14), transparent 55%);
}

.csal-about__quote {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  padding-left: 8px;
}

.csal-about__quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.5;
  color: #c9a961;
  margin-bottom: 16px;
  opacity: 0.7;
}

.csal-about__quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px 0;
}

.csal-about__quote-source {
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a961;
  margin: 0;
}

.csal-about__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.csal-about__stat {
  text-align: left;
}

.csal-about__stat-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #c9a961;
  margin-bottom: 8px;
}

.csal-about__stat-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.csal-about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 60px;
  border-top: 1px solid rgba(10, 23, 51, 0.08);
}

.csal-about__pillar {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid rgba(10, 23, 51, 0.06);
  transition: all 0.4s ease;
  cursor: default;
}

.csal-about__pillar:hover {
  transform: translateY(-6px);
  border-color: #a8324a;
  box-shadow: 0 20px 40px rgba(10, 23, 51, 0.08);
}

.csal-about__pillar-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: rgba(168, 50, 74, 0.15);
  transition: color 0.3s ease;
}

.csal-about__pillar:hover .csal-about__pillar-number {
  color: rgba(168, 50, 74, 0.4);
}

.csal-about__pillar-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 47, 95, 0.06);
  border-radius: 50%;
  color: #1a2f5f;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.csal-about__pillar:hover .csal-about__pillar-icon {
  background: #a8324a;
  color: #ffffff;
  transform: scale(1.05);
}

.csal-about__pillar-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #0a1733;
  margin: 0 0 12px 0;
}

.csal-about__pillar-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 1024px) {
  .csal-about {
    padding: 80px 0 70px;
  }

  .csal-about__container {
    padding: 0 48px;
  }

  .csal-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 72px;
  }

  .csal-about__title {
    font-size: 42px;
  }

  .csal-about__pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .csal-about {
    padding: 64px 0 56px;
  }

  .csal-about__container {
    padding: 0 24px;
  }

  .csal-about__title {
    font-size: 34px;
  }

  .csal-about__lead {
    font-size: 18px;
  }

  .csal-about__body {
    font-size: 15px;
  }

  .csal-about__visual-card {
    padding: 40px 28px;
  }

  .csal-about__quote-text {
    font-size: 18px;
  }

  .csal-about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .csal-about__stat-number {
    font-size: 32px;
  }

  .csal-about__stat-label {
    font-size: 10px;
  }

  .csal-about__pillar {
    padding: 32px 24px;
  }

  .csal-about__pillar-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .csal-about__title {
    font-size: 28px;
  }

  .csal-about__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .csal-about__stat {
    text-align: center;
  }
}

/* ===== C-SAL OUR PROGRAMS SECTION ===== */

.csal-programs {
  position: relative;
  padding: 120px 0 100px;
  background: #ffffff;
  overflow: hidden;
}

.csal-programs::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.csal-programs__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  z-index: 1;
}

.csal-programs__header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.csal-programs__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.csal-programs__accent-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #c9a961;
  flex-shrink: 0;
}

.csal-programs__eyebrow-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8324a;
}

.csal-programs__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  color: #0a1733;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.csal-programs__subtitle {
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.csal-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.csal-program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 36px 40px;
  background: #ffffff;
  border: 1px solid rgba(10, 23, 51, 0.08);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.csal-program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #a8324a;
  transition: width 0.4s ease;
}

.csal-program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 50, 74, 0.3);
  box-shadow: 0 24px 48px rgba(10, 23, 51, 0.1);
}

.csal-program-card:hover::before {
  width: 100%;
}

.csal-program-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: rgba(168, 50, 74, 0.15);
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
}

.csal-program-card:hover .csal-program-card__number {
  color: rgba(168, 50, 74, 0.5);
}

.csal-program-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 47, 95, 0.06);
  border-radius: 8px;
  color: #1a2f5f;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.csal-program-card:hover .csal-program-card__icon {
  background: #0a1733;
  color: #c9a961;
  transform: scale(1.05) rotate(-2deg);
}

.csal-program-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #0a1733;
  margin: 0 0 14px 0;
  min-height: 60px;
  transition: color 0.3s ease;
}

.csal-program-card:hover .csal-program-card__title {
  color: #a8324a;
}

.csal-program-card__desc {
  font-family: Inter, system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.csal-program-card__link {
  display: inline-block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8324a;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 23, 51, 0.08);
  transition: all 0.3s ease;
}

.csal-program-card:hover .csal-program-card__link {
  letter-spacing: 0.15em;
}

.csal-programs__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #0a1733 0%, #1a2f5f 100%);
  border-radius: 4px;
  flex-wrap: wrap;
}

.csal-programs__footer-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: #ffffff;
  margin: 0;
}

.csal-programs__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #a8324a;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.csal-programs__footer-cta:hover {
  background: #c9a961;
  color: #0a1733;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .csal-programs {
    padding: 80px 0 70px;
  }

  .csal-programs__container {
    padding: 0 48px;
  }

  .csal-programs__title {
    font-size: 42px;
  }

  .csal-programs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .csal-program-card {
    padding: 40px 28px 32px;
  }

  .csal-program-card__title {
    min-height: auto;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .csal-programs {
    padding: 64px 0 56px;
  }

  .csal-programs__container {
    padding: 0 24px;
  }

  .csal-programs__title {
    font-size: 34px;
  }

  .csal-programs__subtitle {
    font-size: 15px;
  }

  .csal-programs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .csal-program-card {
    padding: 36px 24px 28px;
  }

  .csal-program-card__number {
    font-size: 36px;
  }

  .csal-program-card__icon {
    width: 64px;
    height: 64px;
  }

  .csal-program-card__title {
    font-size: 20px;
  }

  .csal-programs__footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .csal-programs__footer-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .csal-programs__title {
    font-size: 28px;
  }

  .csal-programs__eyebrow {
    gap: 10px;
  }

  .csal-programs__accent-line {
    width: 28px;
  }

  .csal-programs__eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

/* ===== C-SAL CONSTITUTION EXPLAINED / INSIGHTS SECTION ===== */

.csal-insights {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #0a1733 0%, #1a2f5f 100%);
  overflow: hidden;
}

.csal-insights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(168, 50, 74, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.csal-insights__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  z-index: 1;
}

.csal-insights__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.csal-insights__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.csal-insights__accent-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #c9a961;
  flex-shrink: 0;
}

.csal-insights__eyebrow-text {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a961;
}

.csal-insights__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.csal-insights__subtitle {
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.csal-insights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.csal-insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.csal-insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.csal-insight-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a2f5f;
}

.csal-insight-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.csal-insight-card:hover .csal-insight-card__image {
  transform: scale(1.08);
}

.csal-insight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 23, 51, 0.1) 0%,
    rgba(10, 23, 51, 0.3) 100%
  );
  transition: background 0.4s ease, opacity 0.4s ease;
}

.csal-insight-card:hover .csal-insight-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 23, 51, 0.25) 0%,
    rgba(10, 23, 51, 0.55) 100%
  );
}

.csal-insight-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.csal-insight-card__badge--article {
  color: #1a2f5f;
}

.csal-insight-card__badge--event {
  color: #a8324a;
}

.csal-insight-card__badge--video {
  color: #7b2d8e;
}

.csal-insight-card__badge--commentary {
  color: #c9a961;
}

.csal-insight-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 50, 74, 0.95);
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
  padding-left: 4px;
}

.csal-insight-card:hover .csal-insight-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #a8324a;
}

.csal-insight-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.csal-insight-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8324a;
  margin-bottom: 12px;
}

.csal-insight-card__category {
  color: #a8324a;
}

.csal-insight-card__dot {
  color: rgba(10, 23, 51, 0.3);
}

.csal-insight-card__duration {
  color: #6b7280;
  font-weight: 500;
}

.csal-insight-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #0a1733;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.csal-insight-card:hover .csal-insight-card__title {
  color: #a8324a;
}

.csal-insight-card__desc {
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.csal-insight-card__cta {
  display: inline-block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a8324a;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 23, 51, 0.08);
  transition: letter-spacing 0.3s ease;
}

.csal-insight-card:hover .csal-insight-card__cta {
  letter-spacing: 0.1em;
}

.csal-insights__footer {
  padding: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.csal-insights__footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.csal-insights__footer-text {
  flex: 1;
  min-width: 280px;
}

.csal-insights__footer-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.csal-insights__footer-desc {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.csal-insights__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #a8324a;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.csal-insights__footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.csal-insights__footer-cta:hover {
  background: #c9a961;
  color: #0a1733;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.csal-insights__footer-cta svg {
  transition: transform 0.3s ease;
}

.csal-insights__footer-cta:hover svg {
  transform: translateX(4px);
}

.csal-insights__footer-cta--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.csal-insights__footer-cta--outline:hover {
  background: #ffffff;
  color: #0a1733;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .csal-insights {
    padding: 80px 0 70px;
  }

  .csal-insights__container {
    padding: 0 48px;
  }

  .csal-insights__title {
    font-size: 42px;
  }

  .csal-insights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .csal-insights {
    padding: 64px 0 56px;
  }

  .csal-insights__container {
    padding: 0 24px;
  }

  .csal-insights__title {
    font-size: 34px;
  }

  .csal-insights__subtitle {
    font-size: 15px;
  }

  .csal-insights__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .csal-insight-card__body {
    padding: 20px;
  }

  .csal-insight-card__title {
    font-size: 20px;
  }

  .csal-insights__footer {
    padding: 32px 24px;
  }

  .csal-insights__footer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .csal-insights__footer-heading {
    font-size: 24px;
  }

  .csal-insights__footer-actions {
    width: 100%;
  }

  .csal-insights__footer-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .csal-insights__title {
    font-size: 28px;
  }

  .csal-insights__eyebrow {
    gap: 10px;
  }

  .csal-insights__accent-line {
    width: 28px;
  }

  .csal-insights__eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

/* ===== C-SAL FEATURED WORK SECTION (Litigation + Research) ===== */

.csal-work {
  position: relative;
  padding: 100px 0 100px;
  background: #faf7f2;
  overflow: hidden;
}

.csal-work__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.csal-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.csal-work__column {
  display: flex;
  flex-direction: column;
}

/* Column header */
.csal-work__header {
  margin-bottom: 36px;
}

.csal-work__eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.csal-work__accent-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #a8324a;
  margin-right: 14px;
}

.csal-work__accent-line--gold {
  background: #c9a961;
}

.csal-work__eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8324a;
}

.csal-work__eyebrow-text--gold {
  color: #c9a961;
}

.csal-work__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: #0a1733;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.csal-work__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Card list */
.csal-work__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* ===== CASE CARD (Litigation) ===== */
.csal-case-card {
  position: relative;
  display: block;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(10, 23, 51, 0.08);
  border-left: 4px solid #a8324a;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.csal-case-card:hover {
  border-color: rgba(168, 50, 74, 0.3);
  border-left-color: #a8324a;
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(10, 23, 51, 0.08);
}

.csal-case-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.csal-case-card__status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.csal-case-card__status--ongoing {
  background: rgba(168, 50, 74, 0.1);
  color: #a8324a;
}

.csal-case-card__status--review {
  background: rgba(201, 169, 97, 0.15);
  color: #8b7835;
}

.csal-case-card__status--landmark {
  background: rgba(10, 23, 51, 0.08);
  color: #0a1733;
}

.csal-case-card__court {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6b7280;
  text-transform: uppercase;
}

.csal-case-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #0a1733;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.csal-case-card:hover .csal-case-card__title {
  color: #a8324a;
}

.csal-case-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 16px 0;
}

.csal-case-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 23, 51, 0.06);
  flex-wrap: wrap;
}

.csal-case-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.csal-case-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.csal-case-card__meta-item svg {
  color: #c9a961;
  flex-shrink: 0;
}

.csal-case-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8324a;
  transition: letter-spacing 0.3s ease;
}

.csal-case-card:hover .csal-case-card__cta {
  letter-spacing: 0.12em;
}

/* ===== RESEARCH CARD ===== */
.csal-research-card {
  position: relative;
  display: block;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(10, 23, 51, 0.08);
  border-left: 4px solid #c9a961;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.csal-research-card:hover {
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(10, 23, 51, 0.08);
}

.csal-research-card__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b7835;
  margin-bottom: 12px;
}

.csal-research-card__type svg {
  color: #c9a961;
}

.csal-research-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #0a1733;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.csal-research-card:hover .csal-research-card__title {
  color: #8b7835;
}

.csal-research-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 16px 0;
}

.csal-research-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 23, 51, 0.06);
}

.csal-research-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csal-research-card__avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1733 0%, #1a2f5f 100%);
  color: #c9a961;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50%;
  flex-shrink: 0;
}

.csal-research-card__author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.csal-research-card__author-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0a1733;
}

.csal-research-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.03em;
}

.csal-research-card__cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b7835;
  transition: letter-spacing 0.3s ease;
  flex-shrink: 0;
}

.csal-research-card:hover .csal-research-card__cta {
  letter-spacing: 0.12em;
}

/* ===== COLUMN CTA BUTTONS ===== */
.csal-work__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.csal-work__cta--litigation {
  background: #0a1733;
  color: #ffffff;
  border: 1.5px solid #0a1733;
}

.csal-work__cta--litigation:hover {
  background: #a8324a;
  border-color: #a8324a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 50, 74, 0.3);
}

.csal-work__cta--research {
  background: transparent;
  color: #0a1733;
  border: 1.5px solid #0a1733;
}

.csal-work__cta--research:hover {
  background: #0a1733;
  color: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 23, 51, 0.2);
}

.csal-work__cta svg {
  transition: transform 0.3s ease;
}

.csal-work__cta:hover svg {
  transform: translateX(4px);
}

/* ===== TABLET (1024px and below) ===== */
@media (max-width: 1024px) {
  .csal-work {
    padding: 80px 0 70px;
  }

  .csal-work__container {
    padding: 0 48px;
  }

  .csal-work__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .csal-work__title {
    font-size: 34px;
  }
}

/* ===== MOBILE (768px and below) ===== */
@media (max-width: 768px) {
  .csal-work {
    padding: 64px 0 56px;
  }

  .csal-work__container {
    padding: 0 24px;
  }

  .csal-work__title {
    font-size: 28px;
  }

  .csal-work__subtitle {
    font-size: 14px;
  }

  .csal-case-card,
  .csal-research-card {
    padding: 20px 22px;
  }

  .csal-case-card__title,
  .csal-research-card__title {
    font-size: 19px;
  }

  .csal-case-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .csal-case-card__footer,
  .csal-research-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .csal-case-card__meta {
    gap: 12px;
  }

  .csal-work__cta {
    width: 100%;
    align-self: stretch;
  }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  .csal-case-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .csal-research-card__footer {
    gap: 12px;
  }

  .csal-research-card__author {
    width: 100%;
  }
}

/* ===== C-SAL GET INVOLVED / ENGAGEMENT SECTION ===== */

.csal-engage {
  position: relative;
  padding: 120px 0 120px;
  background: #0a1733;
  overflow: hidden;
  color: #ffffff;
}

/* Background decorative layer */
.csal-engage__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(168, 50, 74, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(26, 47, 95, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle pattern overlay — vertical rule lines for institutional feel */
.csal-engage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  z-index: 0;
}

.csal-engage__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  z-index: 1;
}

/* Header */
.csal-engage__header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.csal-engage__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.csal-engage__accent-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #c9a961;
}

.csal-engage__eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a961;
}

.csal-engage__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.csal-engage__title-accent {
  color: #c9a961;
  font-style: italic;
  font-weight: 500;
}

.csal-engage__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Pathways grid */
.csal-engage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

/* Pathway card */
.csal-pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

/* Top gold accent line that animates in on hover */
.csal-pathway::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a961, #a8324a);
  transition: width 0.4s ease;
}

.csal-pathway:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.csal-pathway:hover::before {
  width: 100%;
}

/* Icon */
.csal-pathway__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
  color: #c9a961;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.csal-pathway:hover .csal-pathway__icon {
  background: #c9a961;
  border-color: #c9a961;
  color: #0a1733;
  transform: scale(1.05);
}

/* Title */
.csal-pathway__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.csal-pathway:hover .csal-pathway__title {
  color: #c9a961;
}

/* Description */
.csal-pathway__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
  flex-grow: 1;
}

/* CTA link */
.csal-pathway__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a961;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: letter-spacing 0.3s ease;
}

.csal-pathway:hover .csal-pathway__cta {
  letter-spacing: 0.15em;
}

/* ===== CLOSING STATEMENT ===== */
.csal-engage__closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.csal-engage__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.4;
  color: #c9a961;
  opacity: 0.5;
  margin-bottom: 24px;
  user-select: none;
}

.csal-engage__statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 32px 0;
  letter-spacing: -0.005em;
}

.csal-engage__divider {
  width: 64px;
  height: 3px;
  background: #a8324a;
  margin: 0 auto 40px;
}

/* Primary CTAs */
.csal-engage__primary-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.csal-engage__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.csal-engage__btn--primary {
  background: #a8324a;
  color: #ffffff;
  border-color: #a8324a;
  box-shadow: 0 8px 24px rgba(168, 50, 74, 0.3);
}

.csal-engage__btn--primary:hover {
  background: #c9a961;
  color: #0a1733;
  border-color: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.35);
}

.csal-engage__btn--primary svg {
  transition: transform 0.3s ease;
}

.csal-engage__btn--primary:hover svg {
  transform: translateX(4px);
}

.csal-engage__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.csal-engage__btn--secondary:hover {
  background: #ffffff;
  color: #0a1733;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ===== TABLET (1024px and below) ===== */
@media (max-width: 1024px) {
  .csal-engage {
    padding: 80px 0 80px;
  }

  .csal-engage__container {
    padding: 0 48px;
  }

  .csal-engage__title {
    font-size: 42px;
  }

  .csal-engage__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .csal-engage__statement {
    font-size: 24px;
  }
}

/* ===== MOBILE (768px and below) ===== */
@media (max-width: 768px) {
  .csal-engage {
    padding: 64px 0 64px;
  }

  .csal-engage__container {
    padding: 0 24px;
  }

  .csal-engage__title {
    font-size: 32px;
  }

  .csal-engage__subtitle {
    font-size: 15px;
  }

  .csal-engage__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .csal-pathway {
    padding: 32px 24px 28px;
  }

  .csal-engage__closing {
    padding-top: 48px;
  }

  .csal-engage__statement {
    font-size: 20px;
  }

  .csal-engage__quote-mark {
    font-size: 72px;
  }

  .csal-engage__primary-ctas {
    flex-direction: column;
    width: 100%;
  }

  .csal-engage__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  .csal-engage__title {
    font-size: 26px;
  }

  .csal-engage__eyebrow {
    gap: 10px;
  }

  .csal-engage__accent-line {
    width: 28px;
  }

  .csal-engage__eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

/* ===== C-SAL FOOTER ===== */

.csal-footer {
  background: #0a1733;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  position: relative;
}

.csal-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ===== NEWSLETTER STRIP ===== */
.csal-footer__newsletter {
  background: linear-gradient(135deg, #1a2f5f 0%, #0a1733 100%);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.csal-footer__newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a961, transparent);
}

.csal-footer__newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.csal-footer__newsletter-text {
  flex: 1;
  min-width: 280px;
}

.csal-footer__newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.csal-footer__newsletter-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.csal-footer__newsletter-form {
  display: flex;
  gap: 8px;
  min-width: 360px;
  flex: 1;
  max-width: 480px;
}

.csal-footer__newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.3s ease;
  min-width: 0;
}

.csal-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.csal-footer__newsletter-input:focus {
  outline: none;
  border-color: #c9a961;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.csal-footer__newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #a8324a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.csal-footer__newsletter-submit:hover {
  background: #c9a961;
  color: #0a1733;
  transform: translateY(-1px);
}

.csal-footer__newsletter-submit svg {
  transition: transform 0.3s ease;
}

.csal-footer__newsletter-submit:hover svg {
  transform: translateX(3px);
}

/* ===== MAIN FOOTER ===== */
.csal-footer__main {
  padding: 72px 0 56px;
}

.csal-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
}

.csal-footer__col--brand {
  padding-right: 24px;
}

/* Brand block */
.csal-footer__brand {
  margin-bottom: 32px;
}

.csal-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.csal-footer__logo svg {
  flex-shrink: 0;
}

.csal-footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.csal-footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: #c9a961;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.csal-footer__mission {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 340px;
}

/* Social */
.csal-footer__social-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a961;
  margin-bottom: 14px;
}

.csal-footer__social-icons {
  display: flex;
  gap: 10px;
}

.csal-footer__social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.csal-footer__social-icon:hover {
  background: #c9a961;
  border-color: #c9a961;
  color: #0a1733;
  transform: translateY(-3px);
}

/* Column headings */
.csal-footer__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 12px;
}

.csal-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #a8324a;
}

/* Link lists */
.csal-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csal-footer__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.csal-footer__links a:hover {
  color: #c9a961;
  transform: translateX(4px);
}

/* Contact list */
.csal-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csal-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.csal-footer__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
  color: #c9a961;
  margin-top: 2px;
}

.csal-footer__contact a,
.csal-footer__contact address {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.csal-footer__contact a:hover {
  color: #c9a961;
}

/* ===== BOTTOM BAR ===== */
.csal-footer__bottom {
  background: #060e22;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.csal-footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.csal-footer__copyright {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.csal-footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.csal-footer__legal a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.csal-footer__legal a:hover {
  color: #c9a961;
}

/* ===== TABLET (1024px and below) ===== */
@media (max-width: 1024px) {
  .csal-footer__container {
    padding: 0 48px;
  }

  .csal-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }

  .csal-footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .csal-footer__newsletter-content {
    gap: 24px;
  }

  .csal-footer__newsletter-form {
    min-width: 100%;
  }
}

/* ===== MOBILE (768px and below) ===== */
@media (max-width: 768px) {
  .csal-footer__container {
    padding: 0 24px;
  }

  .csal-footer__newsletter {
    padding: 40px 0;
  }

  .csal-footer__newsletter-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .csal-footer__newsletter-title {
    font-size: 22px;
  }

  .csal-footer__newsletter-form {
    flex-direction: column;
  }

  .csal-footer__newsletter-submit {
    width: 100%;
    justify-content: center;
  }

  .csal-footer__main {
    padding: 56px 0 40px;
  }

  .csal-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .csal-footer__mission {
    max-width: none;
  }

  .csal-footer__bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .csal-footer__legal {
    gap: 20px;
  }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  .csal-footer__logo-text {
    font-size: 28px;
  }

  .csal-footer__legal {
    gap: 16px;
  }

  .csal-footer__legal a {
    font-size: 12px;
  }
}

/* ==========================================================================
   C-SAL LOGO — real-logo image rendering (header + footer)
   ========================================================================== */
.csal-site-header__brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}
.csal-site-header__brand:hover { opacity: 0.85; }

.csal-site-header__logo-img {
  display: block;
  height: 40px;
  width: 40px;
  max-width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .csal-site-header__logo-img {
    height: 34px;
    width: 34px;
    max-width: 34px;
  }
}

.csal-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.csal-footer__logo-img {
  display: block;
  height: 56px;
  width: 56px;
  max-width: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .csal-footer__logo-img {
    height: 48px;
    width: 48px;
    max-width: 48px;
  }
}
