/* ==========================================================================
   CleanLink — WOMEN OF CLEAN Awards — stylesheet
   Shared by default.aspx · EntryForm.aspx · winners2026.aspx · profiles/*.aspx
   Brand (from "Women Of Clean brand elements.pdf"):
     purple #7d57a4 · lavender #bc8ec0 · orange #e78e48 · gold #ecb44d
   Logo is full-color for LIGHT backgrounds -> nav/headers are light.
   Fonts: Poppins (display) · Open Sans (body)  [logo art = Adriana caps]
   -------------------------------------------------------------------------
   >>> Official brand colors live in :root below. Everything references them. <<<
   ========================================================================== */

:root {
  /* Brand — purple family */
  --purple:      #7d57a4;
  --purple-deep: #5a3c7a;   /* darker purple for small text / links (contrast) */
  --purple-ink:  #3a2456;   /* deep band / footer */
  --lavender:    #bc8ec0;
  --lavender-tint:#f5f0f8;  /* very light purple wash */

  /* Brand — warm accents */
  --orange:      #e78e48;
  --orange-deep: #d1712c;
  --orange-text: #b85f22;   /* accessible orange for small text on white */
  --gold:        #ecb44d;

  /* Neutrals */
  --ink:      #2b2733;
  --text:     #3a3742;
  --muted:    #6b6675;
  --paper:    #ffffff;
  --paper-2:  #f5f1f8;
  --line:     rgba(125, 87, 164, .18);

  /* Deep bands (CTA / footer) — purple */
  --space-1: #2e1c47;
  --space-2: #3a2456;
  --space-3: #5a3c7a;
  --glass:        rgba(255, 255, 255, .08);
  --glass-strong: rgba(255, 255, 255, .12);
  --glass-line:   rgba(255, 255, 255, .18);

  /* Effects */
  --glow-purple: 0 0 0 1px rgba(125,87,164,.35), 0 12px 40px -12px rgba(125,87,164,.5);
  --shadow:    0 1px 2px rgba(58,36,86,.06), 0 18px 42px -20px rgba(58,36,86,.3);
  --shadow-sm: 0 1px 2px rgba(58,36,86,.07), 0 8px 20px -12px rgba(58,36,86,.22);

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    14px;
  --radius-lg: 22px;
  --section-y: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--purple-deep); text-decoration: none; }
a:hover { color: var(--orange-text); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
p  { margin: 0 0 1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding-top: clamp(0.85rem, 1.75vw, 1.35rem); padding-bottom: clamp(0.25rem, 0.6vw, 0.4rem); }
.section--alt,
.section--textured {
  background-color: var(--paper-2);
  background-image:
    radial-gradient(1200px 480px at 15% -10%, rgba(125,87,164,.06), transparent 60%),
    radial-gradient(1000px 420px at 100% 110%, rgba(231,142,72,.07), transparent 55%);
}
body.textured-page {
  background-color: var(--paper-2);
  background-image:
    radial-gradient(1200px 480px at 15% -10%, rgba(125,87,164,.06), transparent 60%),
    radial-gradient(1000px 420px at 100% 110%, rgba(231,142,72,.07), transparent 55%);
  background-attachment: fixed;
}
.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;
}

/* ---------- Section heads ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .84rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--purple-deep); margin: 0 0 .9rem;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}
.section-head { max-width: 760px; margin: 0 0 2.6rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: .6rem; }
.lede { font-size: 1.22rem; color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem;
  padding: .8rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--purple); color: #fff; box-shadow: 0 10px 26px -12px rgba(125,87,164,.7); }
.btn--primary:hover { background: var(--purple-deep); color: #fff; }

/* Orange "act now" pill (matches brand CTA) */
.btn--cta { background: var(--orange); color: #fff; box-shadow: 0 12px 28px -12px rgba(231,142,72,.75); }
.btn--cta:hover { background: var(--orange-deep); color: #fff; }

.btn--outline { background: transparent; color: var(--purple-deep); border-color: var(--line); }
.btn--outline:hover { border-color: var(--purple); color: var(--purple); background: rgba(125,87,164,.07); }

.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: var(--glass-line); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }

.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* ==========================================================================
   Navigation — WHITE bar (full-color WOC logo), purple links · orange CTA
   ========================================================================== */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px -10px rgba(58,36,86,.28);
  transition: box-shadow .25s ease;
}
header.nav.is-scrolled { box-shadow: 0 10px 28px -12px rgba(58,36,86,.42); }
.nav__inner { display: flex; align-items: center; gap: 1.25rem; height: 78px; }
.nav__logo img { height: 44px; width: auto; }
.nav__menus { display: flex; flex: 1; align-items: center; gap: 1.5rem; }
.nav__cta { margin-left: auto; }
.nav__cta .btn { padding-top: .55rem; padding-bottom: .55rem; font-size: .98rem; }

.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--purple-deep); padding: .6rem .9rem; border-radius: 10px; background: none; border: 0; cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.nav__link:hover, .nav__item:hover .nav__link, .nav__link[aria-expanded="true"] { color: var(--purple); background: var(--lavender-tint); }
.nav__link .caret {
  width: .5em; height: .5em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .25s ease;
}
.nav__item:hover .caret, .nav__link[aria-expanded="true"] .caret { transform: rotate(-135deg) translateY(-1px); }

.nav__menu {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 250px;
  width: max-content; max-width: min(460px, 92vw);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 50px -20px rgba(58,36,86,.4); padding: .5rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav__menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__item:hover .nav__menu, .nav__item:focus-within .nav__menu, .nav__menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: flex; align-items: center; gap: .7rem; padding: .7rem .85rem; border-radius: 10px;
  color: var(--text); font-weight: 500; font-size: .98rem; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
}
.nav__menu a i { color: var(--orange); width: 20px; text-align: center; font-size: .95rem; }
.nav__menu a:hover { background: var(--lavender-tint); color: var(--purple); padding-left: 1.1rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--purple);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor; position: relative; transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Simplified nav (single button, no dropdowns) */
@media (max-width: 1024px) {
  .nav--simple .nav__menus {
    position: static; inset: auto; display: flex; flex-direction: row; align-items: center;
    background: transparent; border: 0; box-shadow: none; padding: 0;
  }
  .nav--simple .nav__cta { margin: 0; }
  .nav--simple .nav__cta .btn { width: auto; }
}

/* ==========================================================================
   Hero — purple brand band with orange/gold orbs + grid
   ========================================================================== */
.hero {
  position: relative; margin-top: 78px; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(231,142,72,.4), transparent 60%),
    radial-gradient(900px 520px at 8% 110%, rgba(236,180,77,.24), transparent 55%),
    linear-gradient(160deg, #4a2c6d, #6a4794 55%, #7d57a4);
  color: #f3ecf7;
  padding: clamp(1.75rem, 3.5vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 100%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; pointer-events: none; }
.hero__orb--1 { width: 380px; height: 380px; top: -80px; right: 6%;  background: radial-gradient(circle, rgba(231,142,72,.8), transparent 70%); animation: float1 14s ease-in-out infinite; }
.hero__orb--2 { width: 320px; height: 320px; bottom: -120px; left: 12%; background: radial-gradient(circle, rgba(236,180,77,.6), transparent 70%); animation: float2 18s ease-in-out infinite; }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1rem; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #f3d9bd; margin-bottom: 1.4rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__deadline {
  display: inline-flex; align-items: center; gap: .6rem; margin: .4rem 0 1.3rem;
  font-family: var(--font-display); font-weight: 600; color: #f3d9bd; font-size: 1.16rem;
}
.hero__deadline i { color: var(--gold); }
.hero__sub { font-size: 1.18rem; color: #e2d5ec; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Hero card is WHITE so the full-color WOC logo reads */
.hero__card {
  position: relative; padding: 2.4rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.5); text-align: center;
}
.hero__card img { margin-inline: auto; }
.hero__badge {
  position: absolute; top: -16px; right: -12px; background: var(--orange);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  padding: .45rem .9rem; border-radius: 999px; box-shadow: 0 10px 24px -10px rgba(231,142,72,.8);
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat {
  text-align: center; padding: 1.8rem 1.2rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.stat__chip {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 14px; margin-bottom: .9rem; font-size: 1.35rem; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 10px 22px -10px rgba(125,87,164,.7);
}
.stat__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--purple); line-height: 1; }
.stat__label { display: block; margin-top: .5rem; font-size: .98rem; color: var(--muted); }

/* ==========================================================================
   Info blocks
   ========================================================================== */
.block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 3rem); box-shadow: var(--shadow);
}
.block + .block { margin-top: 1.5rem; }
.block h3 { color: var(--purple-deep); }
.block .accent-bar { width: 64px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--purple), var(--orange)); margin: 0 0 1.2rem; }

.exposure-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 1.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.exposure-logos img { max-height: 58px; width: auto; transition: filter .3s ease, transform .3s ease; }
.exposure-logos a:hover img { transform: translateY(-3px); }
/* CleanLink brand logos ship white — navy chip keeps them legible */
.exposure-logos--brand { gap: clamp(.5rem, 1.6vw, 1.2rem); }
.exposure-logos--brand .logo-chip {
  display: inline-flex; align-items: center; justify-content: center; min-height: 62px;
  background: #002341; border-radius: 12px; padding: .7rem .95rem;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.exposure-logos--brand a:hover .logo-chip { transform: translateY(-3px); box-shadow: var(--shadow); }
/* Uniform footprint so all five brand marks sit on one desktop line (wider
   lockups like CleanLink + Clean Buildings are capped by width to match) */
.exposure-logos--brand img { max-height: 44px; max-width: 132px; width: auto; }

/* ==========================================================================
   Value / feature cards (.cat)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cat {
  position: relative; display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--glow-purple); border-color: transparent; }
.cat:hover::before { transform: scaleX(1); }
.cat__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px;
  font-size: 1.5rem; color: var(--purple); margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(125,87,164,.14), rgba(231,142,72,.16));
  border: 1px solid var(--line);
}
.cat h4 { font-size: 1.2rem; color: var(--purple-deep); margin-bottom: .5rem; }
.cat p { font-size: .96rem; color: var(--muted); margin: 0; }
.cat .tag-new {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  color: #c30000; background: rgba(195,0,0,.08); padding: .15rem .5rem; border-radius: 6px; margin-right: .4rem; vertical-align: middle;
}
.cat .tag-bonus {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  color: #fff; background: var(--orange); padding: .15rem .5rem; border-radius: 6px; margin-right: .4rem; vertical-align: middle;
}

/* ==========================================================================
   Honoree cards (winners2026.aspx) — circular photo w/ purple->orange ring
   ========================================================================== */
.honoree-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.honoree {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 2rem 1.6rem 1.8rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.honoree:hover { transform: translateY(-6px); box-shadow: var(--glow-purple); }
/* Photo ring — the conic-gradient (set inline per honoree) shows the category
   colors as arcs; 1 category = solid ring, 4 categories = four equal arcs. */
.honoree__ring {
  width: 164px; height: 164px; border-radius: 50%; padding: 7px; margin: 0 auto 1.1rem;
  display: grid; place-items: center; box-shadow: 0 10px 24px -12px rgba(125,87,164,.6);
  background: var(--lavender); /* fallback if no inline gradient */
}
.honoree__photo {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  background: var(--paper-2); border: 3px solid #fff;
}
.honoree__photo--ph { display: grid; place-items: center; color: var(--purple); }
.honoree__photo--ph i { font-size: 2.6rem; opacity: .55; }

/* Category color system (rings, tags, legend) */
:root {
  --cat-leadership:     #7d57a4;
  --cat-technology:     #3f8fc0;
  --cat-sustainability: #4fa46a;
  --cat-community:      #e78e48;
  --cat-teamwork:       #ecb44d;
  --cat-development:    #c65b9a;
}
.cat-tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin: 0 0 1rem; }
.cat-tag {
  font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .02em;
  padding: .22rem .62rem; border-radius: 999px; color: #fff;
}
.cat-tag--leadership     { background: var(--cat-leadership); }
.cat-tag--technology     { background: var(--cat-technology); }
.cat-tag--sustainability { background: var(--cat-sustainability); }
.cat-tag--community      { background: var(--cat-community); }
.cat-tag--teamwork       { background: var(--cat-teamwork); }
.cat-tag--development    { background: var(--cat-development); }

.cat-legend { display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; justify-content: center; margin: 0 auto 2.4rem; max-width: 940px; }
.cat-legend span { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.cat-legend .dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; flex: none; }
.honoree__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--purple-deep); margin: 0 0 .15rem; line-height: 1.15; }
.honoree__title { font-weight: 600; color: var(--orange-text); font-size: .96rem; margin: 0 0 .1rem; }
.honoree__org { color: var(--muted); font-size: .92rem; margin: 0 0 .9rem; }
.honoree__bio { color: var(--text); font-size: .96rem; margin: 0 0 1.1rem; }
.honoree__more { font-family: var(--font-display); font-weight: 600; color: var(--purple); font-size: .95rem; }
.honoree__more:hover { color: var(--orange-text); }

/* ==========================================================================
   Entry-form page (EntryForm.aspx) — CredSpark embed wrapper
   ========================================================================== */
.embed-wrap {
  max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2.5rem);
}
.embed-logo { display: block; max-width: 260px; width: 70%; height: auto; margin: 0 auto 1.75rem; }
.embed-wrap .credsparkQuiz { min-height: 320px; }

/* ==========================================================================
   Selection criteria
   ========================================================================== */
.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.criteria {
  display: flex; align-items: center; gap: 1.1rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.criteria:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.criteria__num {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--purple), var(--orange));
}
.criteria h4 { margin: 0; font-size: 1.16rem; color: var(--purple-deep); }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.5rem; text-align: left;
}
.step__badge {
  position: absolute; top: -18px; left: 1.4rem; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold)); box-shadow: 0 10px 22px -10px rgba(231,142,72,.8);
}
.step p { margin: 0; font-size: 1rem; color: var(--text); }

/* ==========================================================================
   CTA band (deep purple)
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; color: #f3ecf7; text-align: center;
  background:
    radial-gradient(700px 380px at 80% -20%, rgba(231,142,72,.42), transparent 60%),
    radial-gradient(600px 360px at 10% 120%, rgba(236,180,77,.22), transparent 55%),
    linear-gradient(150deg, var(--space-1), var(--space-3));
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.5rem);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #e2d5ec; max-width: 60ch; margin-inline: auto; }
.cta-band .price { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 1.18rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

/* ==========================================================================
   Footer (deep purple; logo sits in a white chip)
   ========================================================================== */
.footer { background: var(--purple-ink); color: #cbbdd9; text-align: center; padding: 2.6rem 0; }
.footer img { height: 54px; width: auto; margin: 0 auto 1.2rem; }
.footer p { font-size: .9rem; margin: 0; color: #cbbdd9; }

/* ==========================================================================
   Back-to-top
   ========================================================================== */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; z-index: 90;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 12px 28px -10px rgba(125,87,164,.8);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: linear-gradient(135deg, var(--orange), var(--purple)); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Interior page header (winners2026 / EntryForm) — LIGHT band, purple rules
   ========================================================================== */
.page-hero {
  position: relative; margin-top: 78px; text-align: center; color: var(--ink);
  padding: clamp(2.25rem, 4vw, 3.5rem) 1.25rem;
  background: linear-gradient(180deg, #fff, var(--lavender-tint));
  border-top: 8px solid var(--purple);
  border-bottom: 8px solid var(--purple);
}
.page-hero__logo { display: block; max-width: 260px; width: 60%; margin: 0 auto 1rem; height: auto; }
.page-hero h1 { color: var(--ink); margin: 0; }
.page-hero p { color: var(--muted); margin: .65rem auto 0; max-width: 60ch; }

/* Slim variant (honorees list) — compact PURPLE header, white text, no logo */
.page-hero--slim { padding: clamp(1.2rem, 2.6vw, 1.9rem) 1.25rem; background: linear-gradient(135deg, #4a2c6d, #7d57a4); border: 0; }
.page-hero--slim .page-hero__logo { display: none; }
.page-hero--slim h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: #fff; }
.page-hero--slim p { color: #efe6f6; }

/* Purple category band — groups honorees by award category */
.cat-band {
  margin: 2.4rem 0 1.4rem; padding: .8rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(135deg, #4a2c6d, #7d57a4); color: #fff;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .01em;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
.cat-band i { margin-right: .55rem; color: var(--gold); }
.cat-band__note { font-weight: 500; font-size: .6em; letter-spacing: .02em; opacity: .82; margin-left: .55rem; }

/* ==========================================================================
   PROFILE PAGE (profiles/firstnamelastname.aspx) — matches reference layout
   ========================================================================== */
/* Compact PURPLE header band: back link, headshot left, name/title right */
.profile-hero {
  position: relative; margin-top: 78px; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #4a2c6d 0%, #7d57a4 100%);
  padding: clamp(1.4rem, 3vw, 2.25rem) 0;
}
.profile-hero .profile-back { color: #f3d9bd; margin: 0 0 1.1rem; }
.profile-hero .profile-back:hover { color: #fff; }
.profile-hero__inner {
  display: grid; grid-template-columns: 164px 1fr; gap: clamp(1.25rem, 3vw, 2.2rem);
  align-items: center;
}
/* Circular headshot with the same category-colored ring as honorees.aspx
   (conic-gradient set inline per honoree). */
.profile-hero__ring {
  width: 164px; height: 164px; border-radius: 50%; padding: 7px; margin: 0;
  display: grid; place-items: center; box-shadow: 0 16px 34px -16px rgba(0,0,0,.5);
  background: var(--lavender);
}
.profile-hero__photo {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  background: var(--paper-2); border: 3px solid #fff;
}
.profile-hero__photo--ph { display: grid; place-items: center; color: var(--purple); }
.profile-hero__photo--ph i { font-size: 3.4rem; opacity: .65; }
.profile-hero__award {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: var(--gold); margin: 0 0 .35rem;
}
.profile-hero__name {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.06; margin: 0 0 .25rem;
}
.profile-hero__role { color: #efe6f6; font-size: 1.1rem; margin: 0; }
.profile-hero__org  { color: #cdbbe2; font-size: 1.02rem; margin: .12rem 0 0; }

.profile-body { max-width: 900px; margin: 0 auto; }
.profile-body p { margin: 0 0 1.35rem; font-size: 1.05rem; color: var(--text); }
.profile-body p strong { color: var(--purple-deep); font-family: var(--font-display); font-weight: 700; }
.profile-back { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; color: var(--purple); }
.profile-back:hover { color: var(--orange-text); }

/* ==========================================================================
   Honoree Resources page (honoree-resources.aspx) — logo download toolkit
   ========================================================================== */
.res-offset { margin-top: 78px; }
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.res-col__title { text-align: center; color: var(--ink); font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin-bottom: 1rem; }
.res-preview {
  display: grid; place-items: center; border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 2.25rem; min-height: 250px; margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.res-preview--light { background: #fff; }
.res-preview--dark { background: linear-gradient(150deg, #4a2c6d, #7d57a4); border-color: transparent; }
.res-preview img { width: 100%; max-width: 330px; height: auto; }
.file-card {
  background: linear-gradient(135deg, #7d57a4, #9a74bd); border: 0; border-radius: var(--radius);
  padding: 1rem 1.35rem; margin-bottom: .9rem;
}
.file-card h4 { font-size: 1.05rem; color: #fff; margin: 0 0 .45rem; font-family: var(--font-display); }
.file-card__links { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; margin: 0; }
.file-card__links a { font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: .45rem; }
.file-card__links a::before { content: "\f019"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .78rem; opacity: .8; }
.file-card__links a:hover { color: var(--gold); }

@media (max-width: 760px) { .resources-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
  html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }
  html.reveal-ready .reveal--d1 { transition-delay: .08s; }
  html.reveal-ready .reveal--d2 { transition-delay: .16s; }
  html.reveal-ready .reveal--d3 { transition-delay: .24s; }
  html.reveal-ready .reveal--d4 { transition-delay: .32s; }
  html.reveal-ready .reveal--d5 { transition-delay: .40s; }
  html.reveal-ready .reveal--d6 { transition-delay: .48s; }
}

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-28px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px, -26px); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 420px; margin-inline: auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .honoree-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .profile-hero__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .profile-hero__ring { width: 150px; height: 150px; }
}

@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .nav__menus {
    position: fixed; inset: 78px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: center; gap: 0; padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 24px 40px -20px rgba(58,36,86,.4);
    display: none;
  }
  .nav.is-open .nav__menus { display: flex; }
  .nav__list { flex-direction: column; align-items: center; gap: .25rem; width: 100%; }
  .nav__item--drop { width: 100%; text-align: center; }
  .nav__link { width: 100%; justify-content: center; font-size: 1.12rem; }
  .nav__menu {
    position: static; width: auto; max-width: none; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; margin: 0; text-align: center; background: transparent;
    max-height: 0; overflow: hidden; padding: 0; transition: max-height .3s ease;
  }
  .nav__menu a { justify-content: center; white-space: normal; }
  .nav__item.is-open .nav__menu { max-height: 520px; padding: .25rem 0 .5rem; }
  .nav__cta { margin: .9rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .stat-grid, .card-grid, .card-grid--4, .criteria-grid, .steps, .honoree-grid { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
