/* ============================================================
   ALICHIA R. PARKER — BRAND DESIGN SYSTEM
   Connecting People, Purpose & Possibilities
   ============================================================ */

:root {
  /* Brand Colors */
  --cetacean: #10263B;   /* Primary — Cetacean Blue */
  --varsity: #D51E3D;    /* Secondary — Varsity Red */
  --aqua: #00B6A9;       /* Accent — Aqua Green */
  --umpire: #8CAEDB;     /* Supporting — Umpire Blue */
  --cream: #FFECD2;      /* Supporting — Cream */
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --gray-600: #5B6672;
  --gray-200: #E7ECF1;
  --gray-100: #F5F7F9;

  /* Type */
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing / Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1180px;
  --shadow-soft: 0 20px 50px -20px rgba(16, 38, 59, 0.18);
  --shadow-card: 0 10px 30px -12px rgba(16, 38, 59, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--cetacean);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--varsity);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--aqua);
}

.lede {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 620px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--cetacean); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .lede { color: rgba(255,255,255,0.78); }
.bg-gray { background: var(--gray-100); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--varsity);
  color: var(--white);
}
.btn-primary:hover { background: #b5162f; transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(213,30,61,0.45); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--cetacean);
}
.btn-outline:hover { background: var(--cetacean); color: var(--white); transform: translateY(-2px); }

.bg-navy .btn-outline { color: var(--white); }
.bg-navy .btn-outline:hover { background: var(--white); color: var(--cetacean); }

.btn-accent {
  background: var(--aqua);
  color: var(--white);
}
.btn-accent:hover { background: #009488; transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,182,169,0.45); }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cetacean);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--varsity);
  font-weight: 700;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cetacean);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--varsity);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--varsity); }

.has-dropdown > a::before {
  content: '▾';
  margin-right: 6px;
  font-size: 0.7rem;
  display: inline-block;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
}
.dropdown li a:hover { background: var(--gray-100); color: var(--varsity); }
.dropdown li a::after { display: none; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 12px 26px; font-size: 0.86rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px; background: var(--cetacean); display: block; transition: all 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 110px;
  background: linear-gradient(165deg, var(--white) 55%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { max-width: 100%; margin-bottom: 34px; font-size: 1.2rem; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cetacean), #1c3a56);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--aqua);
  border-radius: var(--radius-lg);
  margin: 16px;
  pointer-events: none;
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.img-placeholder {
  background: linear-gradient(145deg, var(--umpire), var(--cetacean));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-placeholder span { position: relative; z-index: 1; font-weight: 600; letter-spacing: 0.03em; }

/* ---------- Stats ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat h3 { font-size: 2.4rem; color: var(--varsity); margin-bottom: 6px; }
.stat p { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(0,182,169,0.12);
  color: var(--aqua);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-cover {
  width: 100%;
  max-width: 168px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray-600); font-size: 0.97rem; }

.pillar-card {
  border-top: 4px solid var(--varsity);
}

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--varsity);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--varsity);
}
.timeline-item h4 { color: var(--cetacean); font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 6px; }
.timeline-item .year { color: var(--aqua); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.timeline-item p { color: var(--gray-600); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--aqua);
}
.testimonial-card p.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--cetacean);
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--umpire);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: var(--font-serif);
}
.author-name { font-weight: 700; color: var(--cetacean); font-size: 0.92rem; }
.author-role { font-size: 0.8rem; color: var(--gray-600); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 46px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--cetacean); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--gray-100);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--aqua); background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--gray-600); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(0,182,169,0.1);
  border: 1.5px solid var(--aqua);
  color: var(--cetacean);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Tag / Pills ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cetacean);
}
.pill.pill-accent { background: rgba(0,182,169,0.1); border-color: transparent; color: var(--aqua); }

/* ---------- Credentials Table ---------- */
.cred-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.cred-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cred-table th {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cetacean);
  background: var(--gray-100);
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-200);
}
.cred-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.97rem;
  color: var(--gray-600);
  vertical-align: top;
}
.cred-table tr:last-child td { border-bottom: none; }
.cred-table td:first-child { font-weight: 700; color: var(--cetacean); }
.cred-table td:last-child { white-space: nowrap; color: var(--gray-600); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--cetacean);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: var(--varsity);
  opacity: 0.25;
  border-radius: 50%;
  top: -180px; right: -120px;
  filter: blur(10px);
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--aqua);
  opacity: 0.2;
  border-radius: 50%;
  bottom: -150px; left: -100px;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 34px; position: relative; }
.cta-band .btn-row { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cetacean);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; color: rgba(255,255,255,0.65); }
.footer-col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--aqua); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.social-row a:hover { background: var(--aqua); border-color: var(--aqua); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  padding: 70px 0 80px;
  background: var(--cetacean);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lede { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--aqua); justify-content: center; }
.page-hero .eyebrow::before { display: none; }

/* ---------- Utilities ---------- */
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta { gap: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 50px 26px; }

  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 6px;
    box-shadow: var(--shadow-card);
  }
  .site-header.nav-open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding-left: 14px; margin-top: 8px; display: none;
  }
  .site-header.nav-open .has-dropdown.open .dropdown { display: block; }
  .site-header.nav-open .nav-links a { padding: 10px 0; width: 100%; }
}
