:root {
  --ink: #181612;
  --muted: #615b51;
  --paper: #fbfaf6;
  --soft: #f1ede3;
  --line: #ded6c6;
  --gold: #f5bf2f;
  --gold-dark: #a97400;
  --plum: #3f2465;
  --moss: #4d6641;
  --brick: #8f3d2e;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(24, 22, 18, 0.16);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 10px 30px rgba(24, 22, 18, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(24, 22, 18, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(
      url("https://www.lsu.edu/business/images/bec_images/bec-aerial-header-1400x800.jpg") type("image/jpeg")
    )
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 10, 6, 0.82) 0%, rgba(14, 10, 6, 0.54) 48%, rgba(14, 10, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(14, 10, 6, 0.68) 0%, rgba(14, 10, 6, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 84px) 0 clamp(42px, 8vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #251600;
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd865;
  border-color: #ffd865;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 7vw, 72px) 0;
}

.intro-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.snapshot div {
  min-width: 0;
  padding: 20px 16px;
  border-left: 1px solid rgba(245, 191, 47, 0.46);
}

.snapshot dt {
  color: var(--gold);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.snapshot dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading .eyebrow,
.image-copy .eyebrow,
.vision-copy .eyebrow,
.contact-copy .eyebrow,
.cta-section .eyebrow {
  color: var(--gold-dark);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.18;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.statement {
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.statement p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.12;
}

.mission-points {
  display: grid;
  gap: 24px;
}

.mission-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mission-points p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.point-number {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--moss);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.feature-card {
  min-height: 242px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 620px;
  background: var(--paper);
}

.image-panel {
  min-height: 520px;
  background:
    linear-gradient(rgba(24, 22, 18, 0.12), rgba(24, 22, 18, 0.12)),
    url("https://www.lsu.edu/business/images/student-life-images/students-studying-table-bec-rotunda.jpg")
    center / cover no-repeat;
}

.image-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(42px, 7vw, 86px);
}

.image-copy h2 {
  max-width: 620px;
}

.image-copy > p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.leadership-note {
  max-width: 620px;
  padding: 24px;
  background: var(--soft);
  border-left: 6px solid var(--brick);
  border-radius: 8px;
}

.leadership-note p {
  margin: 10px 0 0;
  color: var(--muted);
}

.vision-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.vision-copy p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 44px);
  color: var(--white);
  background: var(--moss);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.18;
}

cite {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-email {
  display: inline-flex;
  margin-top: 22px;
  color: var(--plum);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 22, 18, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form span {
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(245, 191, 47, 0.35);
  border-color: var(--gold-dark);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.cta-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto clamp(42px, 8vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 6vw, 58px);
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
}

.cta-section h2 {
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .intro-grid,
  .mission-layout,
  .image-section,
  .vision-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .image-section {
    min-height: 0;
  }

  .image-panel {
    min-height: 420px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand span:last-child {
    max-width: 140px;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .snapshot,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .snapshot div {
    border-left: 0;
    border-top: 1px solid rgba(245, 191, 47, 0.46);
    padding-inline: 0;
  }

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

  .mission-points p {
    grid-column: auto;
  }

  .point-number {
    width: 42px;
    height: 42px;
  }

  .image-panel {
    min-height: 320px;
  }

  .image-copy {
    padding-inline: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }
}
