:root {
  --green: #092d23;
  --gold: #c7a35a;
  --paper: #f2f0e8;
  --ink: #101b17;
  --line: rgba(16, 27, 23, 0.18);
}
* {
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
}
header {
  height: 82px;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0 clamp(22px, 6vw, 100px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
}
nav a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}
nav a:hover {
  color: var(--gold);
}
.hero {
  position: relative;
  height: min(840px, 92vh);
  min-height: 650px;
  display: grid;
  align-items: end;
  padding: 0 clamp(24px, 7vw, 120px) 100px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(2, 21, 16, 0.88),
      rgba(4, 34, 25, 0.48) 52%,
      rgba(4, 25, 19, 0.08)
    ),
    url("toronto-sunny.jpg") center/cover;
}
.hero > div {
  max-width: 780px;
}
.hero img {
  position: absolute;
  top: 18%;
  right: clamp(40px, 12vw, 190px);
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.42));
}
.hero h1 {
  margin: 0;
  font:
    400 clamp(2.5rem, 4vw, 4.4rem)/0.95 Georgia,
    serif;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.hero p {
  margin: 28px 0 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
}
.hero .company-profile {
  margin-top: 0;
  max-width: 720px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
.investments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--green);
  color: #fff;
}
.investments article {
  min-height: 470px;
  padding: 90px clamp(28px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.investments article:last-child {
  border-right: 0;
}
.label {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.investments h2,
.plain-section > h2,
.history h2,
.contact h2 {
  margin: 30px 0 24px;
  font:
    400 clamp(2.5rem, 4vw, 4.4rem)/0.95 Georgia,
    serif;
  letter-spacing: -0.045em;
}
.company-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0 24px;
}
.company-heading h2 {
  margin: 0;
}
.company-heading img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.investments article > p:not(.label):not(.relationship) {
  max-width: 590px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.6;
}
.investments .relationship {
  margin: 18px 0 24px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}
.investments a {
  margin-top: auto;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}
.news {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 110px);
  padding: 90px clamp(24px, 7vw, 120px);
  background: #e5d39e;
  color: var(--ink);
}
.news h2 {
  margin: 0 0 20px;
  font:
    clamp(3rem, 5vw, 5rem) / 0.95 Georgia,
    serif;
}
.news > div > p {
  max-width: 430px;
  line-height: 1.65;
}
.news-list {
  border-top: 1px solid rgba(3, 23, 17, 0.3);
}
.news-list a {
  display: grid;
  grid-template-columns: 120px 110px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(3, 23, 17, 0.3);
  color: inherit;
  text-decoration: none;
}
.news-list a:hover span {
  text-decoration: underline;
}
.news-list time,
.news-list b {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-list span {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.35;
}
.plain-section {
  padding: 110px clamp(24px, 7vw, 120px);
}
.inner-page {
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  background: #f6f1e7;
}
.inner-page .plain-section,
.inner-page .news,
.inner-page .contact,
.simple-page {
  min-height: calc(100vh - 162px);
}
.plain-section > h1,
.simple-page h1,
.contact h1,
.news h1 {
  margin: 0 0 40px;
  font:
    clamp(3rem, 6vw, 6rem) / 0.95 Georgia,
    serif;
  letter-spacing: -0.045em;
}
.simple-page {
  padding: 110px clamp(24px, 7vw, 120px);
}
.simple-page p {
  font-size: 1.1rem;
}
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.investor-links {
  display: grid;
  gap: 28px;
  max-width: 680px;
}
.investor-item p {
  margin: 0 0 14px;
}
.plain-section > h2 {
  margin-top: 0;
}
.team-list {
  border-top: 1px solid var(--line);
}
.team-list article {
  display: grid;
  grid-template-columns: 0.7fr 0.55fr 1fr;
  column-gap: 55px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.team-list h3 {
  margin: 0;
  font:
    400 1.55rem/1.15 Georgia,
    serif;
}
.role {
  margin: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.66rem;
  font-weight: 800;
  color: #596b63;
}
.team-list article p:not(.role) {
  grid-column: 3;
  margin: 0 0 8px;
  color: #45534d;
}
.history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 85px clamp(24px, 7vw, 120px);
  background: #e4dfd1;
}
.history h2 {
  margin: 0;
}
.history p {
  font:
    400 clamp(2rem, 4vw, 4rem) Georgia,
    serif;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 90px clamp(24px, 7vw, 120px);
  background: var(--gold);
}
.contact h2 {
  margin: 0;
}
.contact p {
  margin: 0 0 22px;
  font-size: 1.05rem;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 30px clamp(24px, 7vw, 120px);
  background: #031711;
  color: #aebeb7;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  header {
    height: 72px;
    padding: 0 20px;
  }
  .brand span {
    display: none;
  }
  nav {
    gap: 14px;
    overflow-x: auto;
  }
  nav a {
    white-space: nowrap;
  }
  .hero {
    height: 740px;
    padding: 0 24px 75px;
    background-position: 63% center;
  }
  .hero img {
    top: 17%;
    right: 7vw;
    width: 95px;
    height: 95px;
  }
  .investments {
    grid-template-columns: 1fr;
  }
  .investments article {
    min-height: 390px;
    padding: 65px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .news {
    grid-template-columns: 1fr;
    padding: 75px 24px;
  }
  .news-list a {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  .news-list span {
    grid-column: 1/-1;
  }
  .plain-section {
    padding: 75px 24px;
  }
  .team-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .team-list article p:not(.role) {
    grid-column: 1;
  }
  .history,
  .contact {
    grid-template-columns: 1fr;
    padding: 65px 24px;
    gap: 20px;
  }
  footer {
    padding: 28px 24px;
  }
}
@media (max-width: 620px) {
  header {
    height: auto;
    min-height: 104px;
    padding: 9px 14px;
    align-content: center;
    flex-wrap: wrap;
  }
  header .brand img {
    width: 42px;
    height: 42px;
  }
  header nav {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow: visible;
    padding-top: 6px;
  }
  header nav a {
    font-size: 0.66rem;
  }
  .inner-page {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.8rem);
  }
  .hero {
    min-height: 680px;
  }
  .investments h2,
  .plain-section > h2,
  .history h2,
  .contact h2 {
    font-size: 2.8rem;
  }
}
