:root {
  --hm-pink: #ff506e;
  --hm-purple: #69005f;
  --lmu-green: #007e36;
  --ink: #0a0f1c;
  --paper: #f4f2ee;
  --mist: #e7eef7;
  --font-rounded: "Arial Rounded MT Regular", "Arial Rounded MT", "Avenir Next Rounded",
    "Helvetica Rounded", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-rounded);
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 80, 110, 0.16), transparent 55%),
    radial-gradient(circle at 85% 5%, rgba(0, 126, 54, 0.18), transparent 45%),
    linear-gradient(120deg, var(--paper), #ffffff 60%);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-rounded);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(244, 242, 238, 0.85);
  border-bottom: 1px solid rgba(10, 15, 28, 0.08);
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hm-purple);
}

.brand span {
  display: block;
  font-family: inherit;
  font-size: 0.9rem;
  color: #2c3e5c;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  font-weight: 600;
  color: var(--hm-purple);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

nav a:hover {
  border-color: var(--hm-pink);
}

.site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 40px 0 20px;
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 0 12px;
  color: var(--hm-purple);
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lmu-green);
  margin: 0 0 12px;
  font-size: 0.85rem;
}

.tagline {
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #1b2742;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--hm-purple);
  color: #fff;
  box-shadow: 0 10px 30px rgba(105, 0, 95, 0.25);
}

.btn.ghost {
  border-color: var(--hm-purple);
  color: var(--hm-purple);
  background: transparent;
}

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

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(10, 15, 28, 0.15);
  border: 1px solid rgba(10, 15, 28, 0.08);
}

.panel-card h2 {
  margin-top: 0;
  color: var(--hm-pink);
}

.panel-card ul {
  padding-left: 18px;
  margin: 0;
  line-height: 1.7;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.section-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(10, 15, 28, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(10, 15, 28, 0.12);
}

.section-card h3 {
  margin-top: 0;
  color: var(--hm-purple);
}

.callout {
  margin-top: 48px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(105, 0, 95, 0.95), rgba(255, 80, 110, 0.9));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--hm-purple);
}

.page-content {
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
}

.page-content p a,
.page-content li a,
.page-content blockquote a,
.page-content td a {
  color: var(--hm-purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 80, 110, 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
  border-radius: 3px;
  padding: 0 0.08em;
  background: linear-gradient(to top, rgba(255, 80, 110, 0.18) 42%, transparent 42%);
  transition: color 0.2s ease, text-decoration-color 0.2s ease, background 0.2s ease;
}

.page-content p a:hover,
.page-content p a:focus-visible,
.page-content li a:hover,
.page-content li a:focus-visible,
.page-content blockquote a:hover,
.page-content blockquote a:focus-visible,
.page-content td a:hover,
.page-content td a:focus-visible {
  color: #4e0050;
  text-decoration-color: var(--hm-pink);
  background: linear-gradient(to top, rgba(255, 80, 110, 0.32) 42%, transparent 42%);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0 10px;
}

.person-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(10, 15, 28, 0.08);
  box-shadow: 0 12px 24px rgba(10, 15, 28, 0.08);
}

.person-card h3 {
  margin: 14px 0 4px;
  color: var(--hm-purple);
  font-family: inherit;
}

.person-title {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--lmu-green);
  font-family: inherit;
}

.person-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid rgba(105, 0, 95, 0.15);
  box-shadow: 0 10px 24px rgba(10, 15, 28, 0.12);
}

.person-placeholder {
  display: grid;
  place-items: center;
  font-weight: 600;
  font-family: inherit;
  color: #2c3e5c;
  background: radial-gradient(circle at 30% 30%, rgba(255, 80, 110, 0.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 126, 54, 0.2), transparent 60%),
    #fff;
}

.person-social {
  margin: 12px 0 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.person-social a {
  color: #2c3e5c;
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.person-social a:hover {
  color: var(--hm-purple);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid rgba(10, 15, 28, 0.08);
  background: #ffffff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
  color: var(--hm-pink);
}

.footer-links a {
  color: var(--hm-purple);
  text-decoration: underline;
  text-decoration-color: rgba(255, 80, 110, 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--hm-pink);
  text-decoration-color: var(--hm-pink);
}

.reveal {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
