
:root {
  --black: #050505;
  --charcoal: #111111;
  --graphite: #1a1a1a;
  --orange: #ff5a1f;
  --white: #ffffff;
  --soft-white: #f4f4f4;
  --muted: #b8b8b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a { color: inherit; }

.nav {
  width: 100%;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: rgba(5,5,5,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
  max-width: 680px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #efefef;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .55px;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  padding: 10px 16px;
  border-radius: 6px;
}

.nav-links .nav-cta:hover {
  color: white;
  background: #e84c14;
}

.hero {
  min-height: 78vh;
  padding: 72px 7% 96px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.70)),
    radial-gradient(circle at 78% 22%, rgba(255,90,31,.22), transparent 32%),
    linear-gradient(135deg, #101010, #050505);
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 25px;
  font-style: italic;
}

.hero h1 span { color: var(--orange); }

.hero p {
  color: #d8d8d8;
  font-size: 21px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .6px;
}

.btn-primary { background: var(--orange); color: white; }
.btn-secondary { border: 1.5px solid rgba(255,255,255,.8); color: white; }

.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #080808;
}

.stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.09);
}

.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

.stat span {
  font-weight: 800;
  font-size: 15px;
}

.section { padding: 88px 7%; }
.section.dark { background: var(--charcoal); }
.section.black { background: var(--black); }
.section.light { background: var(--soft-white); color: #111; }

.section h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
  font-style: italic;
}

.section h2 span { color: var(--orange); }

.lead {
  max-width: 850px;
  color: #cfcfcf;
  font-size: 20px;
  margin-bottom: 42px;
}

.light .lead { color: #444; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }

.card {
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 30px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p,
.card li { color: #cfcfcf; }

.card ul { margin-left: 18px; }

.light .card {
  background: white;
  border: 1px solid #ddd;
}

.light .card p,
.light .card li { color: #333; }

.orange-band {
  background: var(--orange);
  color: white;
  text-align: center;
}

.orange-band h2 {
  margin-bottom: 10px;
}

.page-hero {
  padding: 95px 7%;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.74)),
    radial-gradient(circle at 82% 20%, rgba(255,90,31,.2), transparent 30%),
    #090909;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  font-style: italic;
}

.page-hero p {
  max-width: 780px;
  font-size: 21px;
  color: #d2d2d2;
  margin-top: 20px;
}

.leader-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, #262626, #0b0b0b);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
}

.title {
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.form {
  display: grid;
  gap: 15px;
  max-width: 820px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
}

.form textarea { min-height: 150px; }

.form button {
  background: var(--orange);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  font-weight: 900;
  cursor: pointer;
}

.portal-note {
  background: rgba(255,90,31,.12);
  border: 1px solid rgba(255,90,31,.35);
  border-radius: 14px;
  padding: 22px;
  color: #f4f4f4;
  margin-bottom: 28px;
}

.worker-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px;
}

.worker-card .pill {
  display: inline-block;
  background: rgba(255,90,31,.16);
  color: var(--orange);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer {
  padding: 35px 7%;
  background: #030303;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
  max-width: 1220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer img {
  height: 44px;
  width: auto;
  margin-bottom: 10px;
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-style: italic;
  margin-bottom: 16px;
}

.contact-info h2 span { color: var(--orange); }

.contact-info .lead {
  font-size: 17px;
  margin-bottom: 36px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-point-icon {
  color: var(--orange);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-point strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-point p {
  color: #aaa;
  font-size: 14px;
  margin: 0;
}

.contact-form-col {
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 36px;
}

.contact-form-styled {
  display: grid;
  gap: 18px;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #c8c8c8;
}

.req { color: var(--orange); }

.contact-form-styled input,
.contact-form-styled select,
.contact-form-styled textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .18s;
}

.contact-form-styled input::placeholder,
.contact-form-styled textarea::placeholder { color: #555; }

.contact-form-styled input:focus,
.contact-form-styled select:focus,
.contact-form-styled textarea:focus {
  border-color: var(--orange);
}

.contact-form-styled select {
  color: #ccc;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form-styled textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  background: var(--orange);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  cursor: pointer;
  transition: background .18s;
  width: 100%;
}

.submit-btn:hover:not(:disabled) { background: #e84c14; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.form-success-box {
  text-align: center;
  padding: 48px 24px;
}

.success-check {
  width: 72px;
  height: 72px;
  background: rgba(255,90,31,.15);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange);
  margin: 0 auto 24px;
}

.form-success-box h3 {
  font-size: 32px;
  font-style: italic;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.form-success-box p {
  color: #bbb;
  font-size: 17px;
  max-width: 420px;
  margin: 0 auto;
}

@media(max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .grid,
  .grid.two,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .logo-img {
    height: 44px;
  }
}


/* v8 website-only logo prominence update */
.nav > a {
  flex: 0 0 auto;
}

@media(max-width: 1180px) {
  .logo-img {
    height: 96px;
    max-width: 430px;
  }

  .nav-links a {
    font-size: 10.5px;
  }
}

@media(max-width: 980px) {
  .logo-img {
    height: 70px !important;
    max-width: 340px;
  }

  .nav {
    align-items: flex-start;
  }
}


/* v9 refinements */
.nav > a {
  flex: 0 0 auto;
}

.headshot {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 2px solid var(--orange);
  background: #111;
}

.access-card {
  background: rgba(255,90,31,.10);
  border: 1px solid rgba(255,90,31,.34);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 28px;
}

.access-card h3 {
  margin-bottom: 12px;
}

.access-card p {
  color: #d8d8d8;
}

@media(max-width: 1280px) {
  .logo-img {
    height: 125px;
    max-width: 560px;
  }

  .nav-links a {
    font-size: 10px;
  }
}

@media(max-width: 980px) {
  .logo-img {
    height: 82px !important;
    max-width: 390px;
  }

  .nav {
    align-items: flex-start;
  }

  .headshot {
    width: 150px;
    height: 150px;
  }
}
