:root {
  color-scheme: light;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --ink: #101216;
  --muted: #5f6673;
  --line: rgba(16, 18, 22, 0.12);
  --navy: #194167;
  --gold: #9a7030;
  --shadow: rgba(20, 30, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.siteFooter,
.siteShell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.siteShell {
  flex: 1;
  padding: 88px 0 56px;
}

.intro {
  max-width: 100%;
}

.introMeta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.introMeta a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.introMeta a:hover,
.introMeta a:focus-visible {
  color: var(--ink);
  outline: none;
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Bodoni 72", Didot, "Hoefler Text", Georgia, serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.introText {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.companyTabs {
  margin-top: 0;
}

.tabInput {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.browserTabs {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.browserTab {
  min-width: 116px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -1px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-bottom-color: transparent;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.browserTab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

#portfolioTab:focus-visible ~ .browserTabs .portfolioBrowserTab,
#aboutTab:focus-visible ~ .browserTabs .aboutBrowserTab {
  outline: 2px solid rgba(25, 65, 103, 0.36);
  outline-offset: 2px;
}

#portfolioTab:checked ~ .browserTabs .portfolioBrowserTab,
#aboutTab:checked ~ .browserTabs .aboutBrowserTab {
  border-color: var(--line);
  border-bottom-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.tabPanels {
  padding-top: 30px;
}

.tabPanel {
  display: none;
}

#portfolioTab:checked ~ .tabPanels .portfolioPanel {
  display: block;
}

#aboutTab:checked ~ .tabPanels .aboutPanel {
  display: grid;
}

.holdings {
  display: grid;
}

.holdings,
.aboutPanel {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
}

.holdingsHeader h2,
.aboutHeader h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

#aboutTitle {
  margin: 10px 0 20px 0;
}

.aboutCopy {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.aboutCopy p {
  margin-bottom: 16px;
}

.aboutCopy p:last-child {
  margin-bottom: 0;
}

.aboutCopy span {
  color: var(--ink);
  font-weight: 750;
}

.aboutCopy a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.aboutCopy a:hover,
.aboutCopy a:focus-visible {
  color: var(--ink);
  outline: none;
}

.holdingCard {
  min-height: 118px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 24px 70px var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.holdingCard:hover,
.holdingCard:focus-visible {
  border-color: rgba(25, 65, 103, 0.42);
  box-shadow: 0 30px 80px rgba(20, 30, 42, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.holdingLogo {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
}

.holdingLogo img {
  width: 100%;
  height: 100%;
  display: block;
}

.holdingCopy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.holdingName {
  color: var(--navy);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.1;
}

.holdingDescription {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.holdingAction {
  min-width: 64px;
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid rgba(25, 65, 103, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(25, 65, 103, 0.06);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
}

.siteFooter {
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.siteFooter p {
  margin: 0;
}

@media (max-width: 760px) {
  .siteFooter,
  .siteShell {
    width: min(100% - 28px, 1040px);
  }

  .siteShell {
    padding: 62px 0 42px;
  }

  .introMeta {
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: 58px;
  }

  .introText {
    font-size: 18px;
  }

  .companyTabs {
    margin-top: 0;
  }

  .browserTabs {
    overflow-x: auto;
  }

  .browserTab {
    min-width: 50%;
  }

  .holdings,
  .aboutPanel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .holdingCard {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .holdingLogo {
    width: 70px;
    height: 70px;
  }

  .holdingAction {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 48px;
  }
}
