:root {
  --page-pad: 28px;
  --black: #050505;
  --line: #151515;
  --orange: #ff4b0b;
  --panel-left: 58vw;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.panel-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px var(--page-pad) 0;
  pointer-events: none;
}

.brand,
.site-nav {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 64% 100%, 46% 34%);
}

.brand-text {
  display: grid;
  line-height: 0.8;
  text-transform: none;
}

.brand-text strong {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.3px;
}

.brand-text small {
  justify-self: end;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: #fff;
  color: var(--black);
  padding: 3px 5px 2px;
  font: 700 12px/1 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav button:hover,
.site-nav button:focus-visible,
.site-nav button.is-active {
  border-color: var(--black);
  outline: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 82px var(--page-pad) 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.62) 1.5px, transparent 1.7px);
  background-size: 9px 9px;
}

body.panel-open .page-shell::after {
  opacity: 1;
}

.site-footer {
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero {
  width: fit-content;
  max-width: 100%;
}

.hero h1 {
  margin: 5px 0 28px;
  max-width: 100%;
  font-size: clamp(76px, 9.35vw, 152px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: clamp(-5px, -0.32vw, -2px);
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero p {
  margin: 0;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.1vw, 68px);
  line-height: 1.08;
  letter-spacing: clamp(-1.5px, -0.12vw, -0.7px);
  text-wrap: balance;
  overflow-wrap: normal;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 220px));
  gap: 10px;
  margin-top: 90px;
}

.news-card {
  min-height: 300px;
  border: 1px solid var(--line);
  padding: 13px 15px;
  background: #fff;
}

.news-card.featured {
  background: var(--orange);
  color: #fff;
}

.news-card time,
.news-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0;
  max-width: 195px;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.panel {
  position: fixed;
  z-index: 12;
  top: 52px;
  right: 0;
  bottom: 0;
  left: var(--panel-left);
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
  padding: 18px 16px;
  display: none;
  overflow: auto;
}

body.panel-open .panel {
  display: block;
}

.panel-content {
  display: none;
  max-width: 460px;
}

.panel-content.is-active {
  display: block;
}

.panel h2 {
  margin: 0 0 4px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.panel .location {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1.05;
}

.panel .email {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.panel p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 470px;
}

.panel h3 {
  margin: 0 0 8px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel li {
  font-size: 18px;
  line-height: 1.48;
}

@media (max-width: 1120px) {
  :root {
    --page-pad: 20px;
    --panel-left: 42vw;
  }

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

@media (max-width: 760px) {
  body.panel-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 8px;
    background: #fff;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .page-shell {
    min-height: 100vh;
    padding-top: 100px;
  }

  body.panel-open .page-shell::after {
    inset: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 95px);
    letter-spacing: -3px;
  }

  .hero p {
    font-size: clamp(34px, 10vw, 52px);
  }

  .news-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .news-card {
    min-height: 210px;
  }

  .panel {
    top: 52px;
    left: 14vw;
    height: auto;
    border-left: 0;
  }
}
