:root {
  --ink-950: #0a1c2a;
  --ink-900: #102638;
  --ink-800: #1c3b53;
  --sand-500: #bc8b54;
  --sand-300: #d4b58c;
  --cream-100: #f7f3ec;
  --mist-100: #e5edf1;
  --white: #ffffff;
  --shadow: 0 25px 60px rgba(9, 24, 35, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top right, #f4e9db 0%, var(--cream-100) 40%, #f0f5f7 100%);
  line-height: 1.55;
}

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

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.95), rgba(247, 243, 236, 0.8));
  border-bottom: 1px solid rgba(16, 38, 56, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand-500), #8f6230);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.84;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav .nav-cta {
  padding: 0.56rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 56, 0.16);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero/cleveland-skyline.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(188, 139, 84, 0.25), transparent 36%),
    linear-gradient(110deg, rgba(7, 21, 32, 0.89) 30%, rgba(11, 34, 48, 0.58) 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem 3.5rem;
  color: var(--white);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--sand-300);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Libre Caslon Display", serif;
}

h1 {
  margin-top: 0.85rem;
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -0.012em;
}

.hero-copy {
  margin: 1.2rem 0 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #bd8b53, #a56f36);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(8, 26, 38, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.hero-metrics {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-metrics article {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  background: rgba(245, 250, 255, 0.08);
}

.hero-metrics .metric {
  margin: 0;
  font-family: "Libre Caslon Display", serif;
  font-size: 1.8rem;
  color: #fff5e8;
}

.hero-metrics p {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: clamp(4rem, 9vw, 6.7rem) 0;
}

.split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.overview h2 {
  margin-top: 0.85rem;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

.overview .copy p {
  max-width: 62ch;
  margin-top: 1rem;
}

.fact-panel {
  background: linear-gradient(145deg, var(--white), #edf2f5);
  border: 1px solid rgba(16, 38, 56, 0.09);
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}

.fact-panel h3 {
  font-size: 1.45rem;
}

.fact-panel p {
  margin: 0.9rem 0 0;
}

.fact-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.fact-panel li + li {
  margin-top: 0.35rem;
}

.capabilities {
  background:
    linear-gradient(180deg, #fbf8f2 0%, #f8f2e9 65%, #f6f0e8 100%);
}

.capabilities h2,
.model h2,
.team h2,
.spotlight h2,
.contact h2 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 0.95rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border: 1px solid rgba(16, 38, 56, 0.08);
  box-shadow: 0 18px 42px rgba(14, 35, 52, 0.09);
}

.card h3 {
  font-size: 1.45rem;
}

.card p {
  margin-top: 0.72rem;
}

.model {
  background:
    radial-gradient(circle at 16% 10%, #f0dfc8 0%, transparent 38%),
    linear-gradient(180deg, #eff5f8 0%, #ebf2f6 100%);
}

.biodof {
  background:
    linear-gradient(180deg, #f7f1e8 0%, #f5ebde 100%);
}

.biodof-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.biodof-card {
  border-radius: 0.95rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 38, 56, 0.1);
  box-shadow: 0 14px 34px rgba(15, 36, 54, 0.08);
}

.biodof-card h3 {
  font-size: 1.35rem;
}

.biodof-card p {
  margin-top: 0.65rem;
  font-size: 0.94rem;
}

.model-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.phase {
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(16, 38, 56, 0.1);
  border-radius: 0.95rem;
  padding: 1rem;
}

.phase span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(16, 38, 56, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
}

.phase h3 {
  margin-top: 0.82rem;
  font-size: 1.22rem;
}

.phase p {
  margin-top: 0.55rem;
  font-size: 0.95rem;
}

.spotlight-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  background: linear-gradient(130deg, var(--ink-900), #19374d 70%);
  color: var(--white);
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.spotlight-copy {
  padding: 2.1rem 1.9rem 2.1rem;
}

.spotlight-copy .eyebrow {
  color: #e6c9a1;
}

.spotlight-copy p:last-child {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.spotlight-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.spotlight-stats > div {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.spotlight-stats > div:last-child {
  border-bottom: 0;
}

.spotlight-stats h3 {
  font-size: 2.1rem;
}

.spotlight-stats p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.team {
  background: linear-gradient(180deg, #f7f4ee 0%, #f2efe8 100%);
}

.team-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.team-note {
  margin: 0.95rem 0 0;
  max-width: 58ch;
  color: rgba(16, 38, 56, 0.88);
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(16, 38, 56, 0.09);
  border-radius: 0.95rem;
  padding: 1.1rem;
  box-shadow: 0 16px 36px rgba(12, 32, 48, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(12, 32, 48, 0.13);
  border-color: rgba(16, 38, 56, 0.2);
}

.team-card:focus-visible {
  outline: 2px solid rgba(26, 71, 100, 0.45);
  outline-offset: 2px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0.68rem;
  border: 1px solid rgba(16, 38, 56, 0.1);
  margin-bottom: 0.82rem;
}

.team-card h3 {
  font-size: 1.25rem;
}

.team-card .role {
  margin: 0.38rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-800);
}

.team-summary {
  margin-top: 0.75rem;
  font-size: 0.93rem;
}

.profile-open {
  margin-top: 0.88rem;
  border: 1px solid rgba(16, 38, 56, 0.16);
  border-radius: 999px;
  background: #f6f8fa;
  color: var(--ink-900);
  padding: 0.42rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.profile-open:hover {
  background: #eef3f7;
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 15, 0.6);
}

.profile-modal-panel {
  position: relative;
  width: min(820px, calc(100% - 2rem));
  max-height: min(86vh, 940px);
  overflow: auto;
  margin: clamp(2rem, 5vh, 3.5rem) auto;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 38, 56, 0.15);
  background: #f9fbfd;
  box-shadow: 0 26px 60px rgba(8, 20, 32, 0.35);
}

.profile-modal-close {
  border: 1px solid rgba(16, 38, 56, 0.16);
  border-radius: 999px;
  background: #f0f4f7;
  color: var(--ink-900);
  padding: 0.38rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-modal-panel h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.profile-modal-role {
  margin-top: 0.35rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-800);
}

.profile-modal-body p {
  margin: 0.6rem 0 0;
}

.contact-wrap {
  text-align: center;
  max-width: 760px;
}

.contact-wrap .eyebrow {
  color: #8a6334;
}

.contact-wrap h2 {
  max-width: none;
}

.contact-wrap p {
  margin: 1rem auto 1.5rem;
  max-width: 56ch;
}

.site-footer {
  border-top: 1px solid rgba(16, 38, 56, 0.1);
  background: #f4f0e8;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  font-size: 0.85rem;
  color: rgba(16, 38, 56, 0.82);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero {
    min-height: 90vh;
  }

  .split,
  .cards,
  .biodof-grid,
  .model-grid,
  .spotlight-wrap,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .spotlight-stats {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.82rem;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .hero-content {
    padding-block: 4.2rem 2.8rem;
  }

  h1 {
    max-width: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.16rem;
    padding-block: 0.8rem;
  }
}
