:root {
  --dark-blue: #124760;
  --light-blue: #1d78a5;
  --strong-red: #b31f24;
  --dark-grey: #858585;
  --ink: #17262c;
  --paper: #ffffff;
  --hairline: #dfe4e6;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

a {
  color: var(--light-blue);
}

.wrap-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HERO (index) ================= */

.hero-panel {
  position: relative;
  height: min(64vh, 560px);
  min-height: 380px;
  overflow: hidden;
  background: var(--dark-blue);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: var(--dark-blue);
  clip-path: polygon(0 58%, 100% 0%, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px 26px;
}

.hero-overlay h1 {
  color: var(--paper);
  font-size: clamp(30px, 7vw, 44px);
  line-height: 1.05;
}

.hero-overlay .role {
  font-family: "Roboto", sans-serif;
  text-transform: none;
  color: #bcd6e3;
  font-size: 15px;
  margin-top: 8px;
}

/* chevron divider, lifted straight from the deck's section-break slides */
.chevron {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 13px solid var(--strong-red);
}

/* ================= PAGE HEADER (work.html) ================= */

.page-header {
  background: var(--dark-blue);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
  padding: 28px 24px 58px;
  text-align: left;
}

.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.back-link-light {
  display: inline-block;
  margin-bottom: 22px;
  color: #bcd6e3;
  text-decoration: none;
  font-size: 14px;
}

.back-link-light:hover {
  color: var(--paper);
}

.page-header h1 {
  color: var(--paper);
  font-size: clamp(30px, 7vw, 42px);
}

.tagline-light {
  color: #bcd6e3;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin: 14px 0 0;
}

/* ================= FOLLOW list ================= */

.label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--dark-grey);
  margin: 40px 0 14px;
}

.follow-list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.follow-list li {
  border-bottom: 1px solid var(--hairline);
}

.follow-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 2px;
  text-decoration: none;
  color: var(--ink);
}

.follow-list a:hover .platform {
  color: var(--light-blue);
}

.follow-list .platform {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 17px;
  color: var(--dark-blue);
}

.follow-list .handle {
  color: var(--dark-grey);
  font-size: 14px;
}

/* ================= CTA band (single primary action = red) ================= */

.cta-band {
  display: block;
  text-align: center;
  background: var(--strong-red);
  color: var(--paper);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 19px;
  text-decoration: none;
  padding: 26px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}

.cta-band:hover {
  background: #941a1e;
}

/* ================= External link bands (work.html) ================= */

.link-band {
  display: block;
  text-decoration: none;
  background: var(--dark-blue);
  color: var(--paper);
  padding: 20px 22px;
  margin-bottom: 3px;
}

.link-band:hover {
  background: var(--light-blue);
}

.link-band .title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 17px;
  display: block;
}

.link-band[data-external] .title::after {
  content: " \2197";
}

.link-band .sub {
  color: #bcd6e3;
  font-size: 14px;
  margin-top: 3px;
  display: block;
}

/* ================= Action bands (lead capture) ================= */

.action-band {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: none;
  border-left: 6px solid var(--strong-red);
  box-shadow: 0 0 0 1px var(--hairline);
  padding: 20px 22px;
  margin-bottom: 3px;
  cursor: pointer;
}

.action-band:hover {
  background: #fbf3f3;
}

.action-band .title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 17px;
  color: var(--dark-blue);
  display: block;
}

.action-band .sub {
  color: var(--dark-grey);
  font-size: 14px;
  margin-top: 3px;
  display: block;
}

/* ================= Inline lead form ================= */

.form-panel {
  display: none;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--strong-red);
  padding: 26px 24px;
  margin-top: 24px;
}

.form-panel.open {
  display: block;
}

.form-panel h2 {
  font-size: 19px;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.form-panel .sub {
  color: var(--dark-grey);
  font-size: 14px;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  color: var(--dark-grey);
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--light-blue);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
}

.form-status.ok {
  color: var(--dark-blue);
}

.form-status.err {
  color: var(--strong-red);
}

.form-submit {
  display: inline-block;
  background: var(--strong-red);
  color: var(--paper);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
}

.form-submit:hover {
  background: #941a1e;
}

footer {
  margin: 56px 0 24px;
  color: var(--dark-grey);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 420px) {
  .hero-overlay h1,
  .page-header h1 {
    font-size: 30px;
  }
}

/* Desktop: the portrait photo can't stay full-bleed across a wide
   viewport without losing her face, so the hero becomes two columns
   and the diagonal cut moves from a horizontal to a vertical seam. */
@media (min-width: 720px) {
  .hero-panel {
    display: flex;
    height: 480px;
    min-height: 0;
  }

  .hero-photo {
    position: static;
    width: 420px;
    flex-shrink: 0;
    height: 100%;
    object-position: 50% 8%;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  }

  .hero-overlay {
    position: static;
    flex: 1;
    height: 100%;
    clip-path: none;
    justify-content: center;
    padding: 0 56px;
  }

  .page-header {
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    padding: 48px 24px 72px;
  }
}