/* ==========================================================================
   Allison Lawrence — executive profile
   Palette: graphite ink / chrome white / burnished copper
   Type: Archivo (display + utility), Newsreader (prose)
   Signature: career timeline set as a precision measuring rule
   ========================================================================== */

:root {
  --ink: #1a1b1e;          /* graphite */
  --ink-soft: #3c3e44;
  --chrome: #f5f5f2;       /* warm chrome white */
  --chrome-deep: #e9e9e4;
  --copper: #c05a1e;       /* burnished copper accent */
  --copper-bright: #d4712b;
  --olive: #343527;        /* matched to the portrait background */
  --olive-deep: #2a2b1f;
  --steel: #8b8d93;        /* utility gray */
  --hairline: rgba(26, 27, 30, 0.14);
  --hairline-light: rgba(245, 245, 242, 0.18);

  --display: "Archivo", system-ui, sans-serif;
  --prose: "Newsreader", Georgia, serif;

  --max-w: 74rem;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--prose);
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--chrome);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad-x);
  background: color-mix(in srgb, var(--chrome) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.topnav { display: flex; gap: 1.75rem; }

.topnav a {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.topnav a:hover { color: var(--copper); }

@media (max-width: 640px) {
  .topnav { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(4rem, 10vh, 8rem) var(--pad-x) clamp(3rem, 8vh, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tick-sep {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.55;
}

.hero-name {
  font-family: var(--display);
  font-variation-settings: "wdth" 118;
  font-weight: 750;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-name .line { display: block; }
.hero-name .accent-line {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero-thesis {
  max-width: 34em;
  margin-top: 2.25rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 340;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* portrait panel keyed to the photograph's own background,
   so image and panel read as one commissioned piece */
.hero-portrait {
  justify-self: end;
  position: relative;
  max-width: clamp(15rem, 26vw, 21rem);
  background: var(--olive);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) 0;
  box-shadow: 0 32px 70px -30px rgba(42, 43, 31, 0.55);
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-portrait figcaption {
  padding: 1.1rem 0 1.25rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.55);
}

.hero-portrait figcaption span {
  display: block;
  color: var(--copper-bright);
  margin-bottom: 0.25rem;
}

@media (max-width: 800px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-portrait {
    justify-self: center;
    margin-top: 0.75rem;
    width: 100%;
    max-width: 24rem;
  }
}

.hero-facts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--hairline);
}

.fact {
  flex: 1 1 12rem;
  padding: 1.4rem 1.5rem 0 0;
  border-top: 3px solid transparent;
  margin-top: -1px;
}
.fact:first-child { border-top-color: var(--copper); }

.fact-value {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wdth" 110;
  font-weight: 700;
  font-size: 1.6rem;
}

.fact-label {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--steel);
  text-transform: uppercase;
}

/* the ruled edge under the hero — a nod to the measuring rule */
.hero-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background:
    repeating-linear-gradient(
      to right,
      var(--hairline) 0 1px,
      transparent 1px 12px
    ) bottom / 100% 8px no-repeat,
    repeating-linear-gradient(
      to right,
      var(--hairline) 0 1px,
      transparent 1px 60px
    ) bottom / 100% 14px no-repeat;
}

/* ---------- sections ---------- */

.section {
  padding: clamp(4rem, 9vh, 7rem) var(--pad-x);
}

.section > .section-head,
.lead-grid,
.board-grid,
.rule-timeline,
.contact-inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }

.kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-head h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18em;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--steel);
  max-width: 36em;
}

/* ---------- leadership ---------- */

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.lead-copy p + p { margin-top: 1.35rem; }

.lede {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 340;
  line-height: 1.5;
}
.lede::first-letter {
  color: var(--copper);
  font-weight: 500;
}

.lead-pillars {
  border-left: 1px solid var(--hairline);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.pillars-title {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}

.lead-pillars ul { list-style: none; }
.lead-pillars li + li { margin-top: 1.5rem; }

.lead-pillars strong {
  display: block;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.lead-pillars span {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-pillars {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding-left: 0;
    padding-top: 2rem;
  }
}

/* ---------- career: the measuring rule ---------- */

.section-dark {
  background: var(--olive);
  color: var(--chrome);
}

.kicker-light { color: var(--copper-bright); }

.section-dark .section-head h2 { color: var(--chrome); }
.section-dark .section-sub { color: rgba(245, 245, 242, 0.55); }

.rule-timeline {
  list-style: none;
  position: relative;
  /* the rule itself: a vertical edge with fine graduations */
  border-left: 1px solid var(--hairline-light);
  background:
    repeating-linear-gradient(
      to bottom,
      var(--hairline-light) 0 1px,
      transparent 1px 14px
    ) left / 10px 100% no-repeat;
}

.rt-item {
  position: relative;
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: 0 0 clamp(2.5rem, 6vh, 4rem) clamp(2.25rem, 4vw, 3rem);
}
.rt-item:last-child { padding-bottom: 0.5rem; }

/* the major graduation mark for each year */
.rt-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 18px;
  height: 2px;
  background: var(--copper-bright);
}

.rt-year {
  font-family: var(--display);
  font-variation-settings: "wdth" 110;
  font-weight: 750;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--copper-bright);
  line-height: 1.1;
}

.rt-body h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 108;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.15;
  color: var(--chrome);
}

.rt-org {
  margin: 0.4rem 0 0.9rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.5);
}

.rt-body p:not(.rt-org) {
  max-width: 46em;
  font-weight: 320;
  color: rgba(245, 245, 242, 0.82);
}

@media (max-width: 640px) {
  .rt-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .rt-year { font-size: 1.2rem; }
}

/* ---------- quote band ---------- */

.quote-band {
  padding: clamp(4rem, 10vh, 7rem) var(--pad-x);
  background: var(--chrome-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.quote-band blockquote {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.quote-band p {
  font-family: var(--prose);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
}

.quote-band p::before { content: "\201C"; color: var(--copper); }
.quote-band p::after  { content: "\201D"; color: var(--copper); }

.quote-band cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--display);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- boards ---------- */

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.board-card {
  background: var(--chrome);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.board-card-featured {
  background: var(--chrome-deep);
}

/* the internal-leadership card is categorically different from the
   external boards, so it takes the full closing row */
.board-grid .board-card:last-child {
  grid-column: 1 / -1;
}

.board-grid .board-card:last-child > p:last-child {
  max-width: 46em;
}

.board-type {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}

.board-card h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 108;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
}

.board-role {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.board-card > p:last-child {
  font-size: 0.99rem;
  color: var(--ink-soft);
}

/* ---------- contact ---------- */

.section-contact {
  border-top: 1px solid var(--hairline);
}

.contact-inner { text-align: center; max-width: 42rem; }

.contact-inner h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 112;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.contact-inner p {
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chrome);
  background: var(--olive);
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--olive);
  transition: background 0.18s ease, color 0.18s ease;
}
.btn:hover {
  background: var(--copper);
  border-color: var(--copper);
}

/* ---------- footer ---------- */

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--steel);
  text-transform: uppercase;
}

/* ---------- reveal motion ---------- */

.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
}
