:root {
  --black: #000000;
  --ink: #151515;
  --soft-ink: #555555;
  --line: #c0cbc5;
  --paper: #ffffff;
  --smoke: #f4f4f1;
  --gold: #b89a60;
  --footer: #111111;
  --display: "Philosopher", "Cormorant Garamond", Georgia, serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  background: rgba(0,0,0,.82);
}
.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 0 48px;
}
.brand-mark {
  width: 220px;
  height: 86px;
  display: grid;
  place-items: center;
}
.brand-mark img { width: 214px; max-height: 82px; object-fit: contain; }
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a { opacity: .86; transition: opacity .2s ease; }
.main-nav a:hover { opacity: 1; }
.nav-item {
  position: relative;
  padding: 38px 0;
  cursor: default;
}
.nav-item > a,
.nav-item > button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  cursor: pointer;
  opacity: .86;
  transition: opacity .2s ease;
}
.nav-item > a:hover,
.nav-item > button:hover { opacity: 1; }
.nav-item > button::after {
  content: " +";
  font-weight: 300;
}
.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: 96px;
  display: grid;
  grid-template-columns: 1.08fr .95fr .95fr .95fr .95fr;
  gap: 34px;
  padding: 40px 58px 44px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.mega ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.mega li {
  color: var(--soft-ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.mega li a {
  color: inherit;
  opacity: 1;
  transition: color .2s ease;
}
.mega li a:hover { color: var(--ink); }
.mega-card {
  min-height: 270px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mega-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.62));
}
.mega-card span {
  position: relative;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #000;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.7));
}
.hero-copy {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  padding: 170px 0 96px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.page-hero .eyebrow { color: rgba(255,255,255,.76); }
.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 118px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: 0;
}
.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 92px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: 0;
}
.lead {
  max-width: 860px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.35;
  color: inherit;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 12px 30px;
  border: 1px solid currentColor;
  color: inherit;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.button:hover { background: currentColor; color: #000; }

.section { padding: clamp(70px, 9vw, 140px) 48px; }
.section.smoke { background: var(--smoke); }
.container { max-width: 1320px; margin: 0 auto; }
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.body-copy {
  max-width: 780px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 18px;
}
.body-copy + .body-copy { margin-top: 18px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-card {
  min-height: 360px;
  background: #fff;
  padding: 34px;
  display: grid;
  align-content: end;
}
.info-card h2,
.info-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1;
  font-weight: 400;
}
.info-card p {
  margin: 18px 0 0;
  color: var(--soft-ink);
}
.media-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 70vh;
  background: var(--footer);
  color: #fff;
}
.media-split img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.media-copy {
  display: grid;
  align-content: center;
  padding: clamp(58px, 7vw, 112px);
}
.list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.list-item {
  background: #fff;
  padding: 28px;
}
.list-item h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}
.list-item p { margin: 0; color: var(--soft-ink); }
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 60px 48px 34px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-shell { min-height: 84px; padding: 0 24px; }
  .brand-mark { width: 178px; height: 74px; }
  .brand-mark img { width: 172px; max-height: 70px; }
  .intro-grid, .media-split { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero-copy { width: calc(100% - 44px); padding: 120px 0 70px; }
  .display-title { font-size: clamp(42px, 15vw, 70px); }
  .section-title { font-size: clamp(38px, 12vw, 58px); line-height: 1.04; }
  .lead { font-size: 19px; }
  .section { padding: 66px 22px; }
  .intro-grid { gap: 34px; }
  .list-grid { grid-template-columns: 1fr; }
  .media-copy { padding: 54px 24px 70px; }
  .media-split img { min-height: 380px; }
  .button { width: 100%; max-width: 280px; }
  .site-footer { padding: 44px 22px 28px; }
}
