:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.zc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 46px);
  min-height: 86px;
  padding: 18px clamp(20px, 4.8vw, 72px);
  color: #fff;
  border-bottom: 1px solid rgba(196, 152, 51, .35);
  background: #11100e;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.zc-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-decoration: none;
}

.zc-logo-mark {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, .28));
}

.zc-logo-text {
  display: grid;
  gap: 2px;
}

.zc-logo-text strong {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.zc-logo-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zc-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.zc-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.zc-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.zc-nav a:hover::after,
.zc-nav a.active::after {
  transform: scaleX(1);
}

.zc-tools {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zc-tools button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.zc-tools button::before,
.zc-tools button::after,
.zc-tools button i {
  display: block;
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

.zc-tools button::before {
  transform: translateY(-8px);
}

.zc-tools button::after {
  transform: translateY(8px);
}

.zc-dropdown {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px clamp(20px, 4.8vw, 72px) 56px;
  background: #11100e;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .22s ease, transform .22s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .zc-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.zc-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.zc-dropdown-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zc-menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
}

.zc-menu-close::before,
.zc-menu-close::after {
  position: absolute;
  left: 9px;
  top: 23px;
  width: 30px;
  height: 2px;
  content: "";
  background: #fff;
}

.zc-menu-close::before {
  transform: rotate(45deg);
}

.zc-menu-close::after {
  transform: rotate(-45deg);
}

.zc-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-content: start;
  margin-top: 42px;
  background: rgba(255, 255, 255, .16);
  overflow: auto;
}

.zc-dropdown-grid section {
  min-height: 270px;
  padding: clamp(24px, 3vw, 42px);
  background: #11100e;
}

.zc-dropdown-grid h2 {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zc-dropdown-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 780;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
}

.zc-dropdown-grid a::after {
  content: "→";
  color: var(--accent);
  font-weight: 900;
}

.zc-dropdown-grid a:hover,
.zc-dropdown-grid a.active {
  color: #fff;
}

.zc-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.zc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .34) 52%, rgba(0, 0, 0, .64)),
    radial-gradient(circle at 75% 22%, rgba(196, 152, 51, .28), transparent 28%);
}

.zc-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(1260px, 100%);
  padding: 152px clamp(22px, 6vw, 92px) 86px;
}

.zc-section-kicker,
.zc-section-label {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zc-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(56px, 8.4vw, 138px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .88;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.zc-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.35;
}

.zc-scroll {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
}

.zc-scroll span {
  display: block;
  width: 26px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-2px, -3px);
}

.zc-intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px);
  padding: clamp(72px, 10vw, 142px) clamp(22px, 6vw, 92px);
  background: #fff;
}

.zc-intro-main h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 92px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.zc-intro-main p {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 25px);
}

.zc-stat-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}

.zc-stat-grid article {
  min-height: 190px;
  padding: 28px;
  background: #fff;
}

.zc-stat-grid strong {
  display: block;
  color: var(--accent-2);
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 900;
  line-height: .9;
}

.zc-stat-grid span {
  display: block;
  max-width: 230px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 750;
}

.zc-menu-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.zc-menu-band article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 54px);
  background: var(--paper);
}

.zc-menu-band span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.zc-menu-band h3 {
  margin: 48px 0 22px;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: .95;
  text-transform: uppercase;
}

.zc-menu-band a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.zc-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(74px, 10vw, 138px) clamp(22px, 6vw, 92px);
}

.zc-content-wrap.home-content {
  display: block;
  padding-top: clamp(60px, 8vw, 112px);
}

.zc-article {
  min-width: 0;
}

.zc-article > * {
  max-width: 920px;
}

.home-intro {
  max-width: none;
}

.home-intro > p,
.zc-article > p {
  margin: 0 0 24px;
  color: #373833;
  font-size: clamp(18px, 1.45vw, 22px);
}

.zc-article h2,
.home-intro h2 {
  margin: 64px 0 24px;
  font-size: clamp(34px, 4.4vw, 72px);
  font-weight: 850;
  line-height: .98;
  text-transform: uppercase;
}

.zc-article h3,
.home-intro h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.12;
}

.grid-section,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: none;
  margin: 42px 0 0;
  background: var(--line);
}

.grid-section .card,
.feature-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 42px);
  background: #fff;
}

.feature-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.feature-card span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card strong {
  margin-top: 42px;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.feature-card em {
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

.feature-card:hover,
.zc-menu-band article:hover {
  background: #f9f7f1;
}

.zc-article ul,
.zc-article ol {
  margin: 24px 0 30px;
  padding-left: 22px;
}

.zc-article li {
  margin: 0 0 12px;
}

.zc-article img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  margin: 38px 0;
}

.zc-related-nav {
  align-self: start;
  position: sticky;
  top: 110px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.zc-related-nav section {
  margin-bottom: 30px;
}

.zc-related-nav h2 {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.zc-related-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.zc-related-nav a.active,
.zc-related-nav a:hover {
  color: var(--ink);
}

.site-disclaimer {
  display: none;
}

.zc-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #111;
  color: #fff;
}

.zc-footer div {
  display: grid;
  gap: 6px;
}

.zc-footer span {
  color: rgba(255, 255, 255, .62);
}

.zc-footer a {
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .zc-header {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .zc-nav {
    display: none;
  }

  .zc-intro,
  .zc-content-wrap {
    grid-template-columns: 1fr;
  }

  .zc-stat-grid,
  .zc-menu-band,
  .grid-section,
  .feature-grid,
  .zc-dropdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zc-stat-grid {
    grid-column: auto;
  }

  .zc-related-nav {
    position: static;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .zc-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .zc-logo-mark {
    width: 48px;
    height: 48px;
  }

  .zc-logo-text small {
    display: none;
  }

  .zc-tools span {
    display: none;
  }

  .zc-hero-content {
    padding: 122px 20px 54px;
  }

  .zc-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 64px);
    line-height: .92;
  }

  .zc-intro,
  .zc-content-wrap {
    padding: 56px 20px;
  }

  .zc-stat-grid,
  .zc-menu-band,
  .grid-section,
  .feature-grid,
  .zc-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .zc-dropdown {
    padding: 12px 18px 32px;
  }

  .zc-dropdown-grid {
    margin-top: 24px;
  }

  .zc-menu-band article,
  .grid-section .card,
  .feature-card,
  .zc-dropdown-grid section {
    min-height: auto;
  }

  .zc-footer {
    display: grid;
    padding: 30px 20px;
  }
}
