:root {
  --ink: #14110f;
  --muted: #625b55;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e6ded4;
  --ember: #e45f2b;
  --gold: #d7a642;
  --teal: #0f7b75;
  --deep: #15110f;
  --shadow: 0 20px 60px rgba(20, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.hero {
  min-height: 92vh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.92), rgba(9, 7, 6, 0.68) 48%, rgba(9, 7, 6, 0.2)),
    url("./assets/Profile%20Banner.png") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

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

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 48px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 860px;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}

.button.secondary {
  color: #fff;
}

.profile-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 13, 10, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.profile-panel img {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  background: #000;
  margin-bottom: 18px;
}

.profile-panel strong,
.profile-panel span {
  display: block;
}

.profile-panel span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-disclosure > summary,
.table-disclosure > summary,
.footer-disclosure > summary {
  cursor: pointer;
}

.section-disclosure > summary {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-disclosure > summary::marker,
.table-disclosure > summary::marker,
.footer-disclosure > summary::marker {
  color: var(--gold);
}

.summary-title {
  display: block;
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.table-disclosure + .table-disclosure {
  margin-top: 18px;
}

.table-disclosure > summary {
  margin-bottom: 10px;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 850;
}

.table-wrap,
.footer-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.info-table,
.footer-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(20, 17, 15, 0.07);
}

.info-table th,
.info-table td,
.footer-table th,
.footer-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td,
.footer-table tr:last-child th,
.footer-table tr:last-child td {
  border-bottom: 0;
}

.info-table th,
.footer-table th {
  width: 180px;
  color: var(--ink);
  font-weight: 850;
}

.info-table td {
  color: var(--muted);
}

.info-table a {
  color: var(--ember);
  font-weight: 800;
}

.footer {
  padding: 64px max(20px, calc((100% - 1120px) / 2));
  background: #0e0c0a;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer h2 {
  max-width: 680px;
}

.footer-disclosure > summary {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 850;
}

.footer-table {
  min-width: 360px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.footer-table th,
.footer-table td {
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-table th {
  color: #fff;
}

.footer-table td,
.footer-table a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-table a:hover {
  color: var(--gold);
}

@media (max-width: 820px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .summary-title {
    font-size: 2.45rem;
  }

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

  .hero-content,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 28px;
    align-items: start;
  }

  .profile-panel {
    max-width: 420px;
  }

  .footer-table {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .summary-title {
    font-size: 2rem;
  }

  .nav,
  .hero-content,
  .section {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 72px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .info-table th,
  .info-table td,
  .footer-table th,
  .footer-table td {
    padding: 13px 14px;
  }

  .info-table th,
  .footer-table th {
    width: 112px;
  }
}
