:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f0efec;
  --mid: #888888;
  --font-sans: 'acumin-pro', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-serif-italic: 'ivyora-display', 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

#scene-hero {
  height: 100vh;
}

.hero-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100vh - 27.2395833333vw);
  z-index: 20;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.hero-tagline {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--white);
  line-height: 1.45;
  opacity: 0;
}

.trusted-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trusted-label {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 25px;
  color: var(--white);
  opacity: 0;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.logo-item {
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  white-space: nowrap;
}

.logo-item img {
  height: auto;
  display: block;
}

.trusted-logos .logo-item:nth-child(1) img {
  width: 5.67vw;
}

.trusted-logos .logo-item:nth-child(2) img {
  width: 11.23vw;
}

.trusted-logos .logo-item:nth-child(3) img {
  width: 9.95vw;
}

.trusted-logos .logo-item:nth-child(4) img {
  width: 6.37vw;
}

.trusted-logos .logo-item:nth-child(5) img {
  width: 10.01vw;
}

.trusted-logos .logo-item:nth-child(6) img {
  width: 2.14vw;
}

.hero-wordmark-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.wordmark-stack {
  position: relative;
  width: 100%;
}
.wordmark-stack svg {
  width: 100%;
  height: auto;
  display: block;
}
.wordmark-stack #wordmark-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#scene-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(60px, 10vh, 120px) clamp(32px, 6vw, 96px);
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 680px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.col-eyebrow, .contact-label {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.3;
}

.col-body, .contact-email {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
}
.col-body p + p, .contact-email p + p {
  margin-top: 16px;
}

.contact-block {
  margin-top: 56px;
}

.contact-email {
  font-size: 22px;
  font-style: italic;
}

/*# sourceMappingURL=main.css.map */
