* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #ffffff;
}

.top-banner {
  min-height: 96px;
  background: #000000;
  padding: 6px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.banner-logo-img {
  height: 108px;
  width: auto;
  display: block;
}

.menu-toggle,
.inquiry-button {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 30px;
  height: 20px;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-icon::before {
  top: 4px;
}

.menu-icon::after {
  top: 14px;
}

.menu-toggle.is-open .menu-icon::before {
  top: 10px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-icon::after {
  top: 10px;
  transform: rotate(-45deg);
}

.inquiry-button {
  background: #2b3035;
  border-color: #2b3035;
  min-width: 160px;
}

.inquiry-button span {
  font-size: 20px;
}

.menu-panel {
  max-height: 0;
  overflow: hidden;
  background: #e3e6e8;
  border-bottom: 1px solid #c6ccd1;
  transition: max-height 0.45s ease;
}

.menu-panel.is-open {
  max-height: 520px;
}

.menu-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding: 70px 56px;
  color: #2b2930;
}

.menu-quick-links {
  display: grid;
  align-content: start;
  gap: 18px;
}

.menu-quick-links a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
  color: #101010;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-contact a:hover {
  color: #b18a00;
}

.menu-contact {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 0;
  padding-left: 60px;
  border-left: 1px solid #dedede;
  text-align: right;
}

.menu-contact p {
  margin: 0 0 20px;
  max-width: 360px;
  font-size: 24px;
  line-height: 1.25;
}

.menu-contact a {
  color: #2b2930;
  font-size: 22px;
  text-decoration: underline;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 110px 56px;
  display: flex;
  align-items: center;
  color: white;
  background: #101010;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 82%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #101010 0%,
    rgba(16, 16, 16, 0.95) 18%,
    rgba(16, 16, 16, 0.55) 38%,
    rgba(16, 16, 16, 0) 62%
  );
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #101010 0%,
      #101010 26%,
      rgba(16, 16, 16, 0.96) 36%,
      rgba(16, 16, 16, 0.68) 47%,
      rgba(16, 16, 16, 0.28) 60%,
      rgba(16, 16, 16, 0.04) 82%
    ),
    linear-gradient(
      180deg,
      rgba(16, 16, 16, 0) 0%,
      rgba(16, 16, 16, 0.1) 62%,
      #101010 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  color: #f7bf13;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero p {
  font-size: 21px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  margin-top: 30px;
  background: #f7bf13;
  color: #111111;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid #f7bf13;
  border-radius: 6px;
  text-transform: uppercase;
}

.button-outline {
  background: transparent;
  color: white;
}

.metrics-section {
  padding: 70px 0 80px;
  background: #f4f5f6;
  text-align: center;
  overflow: hidden;
}

.metrics-kicker {
  margin: 0 0 8px;
  color: #f7bf13;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.metrics-section h2 {
  margin: 0;
  color: #2a2433;
  font-size: 46px;
  line-height: 1.05;
  text-transform: uppercase;
}

.metrics-subtitle {
  margin: 12px auto 36px;
  max-width: 760px;
  color: #4f5661;
  font-size: 20px;
  line-height: 1.4;
}

.metrics-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 390px);
  gap: 28px;
  overflow-x: auto;
  padding: 0 56px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.metric-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 10px;
  background: #101010;
  scroll-snap-align: start;
  box-shadow: 0 16px 34px rgba(16, 16, 16, 0.16);
}

.metric-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.metric-card:nth-child(2) img {
  object-position: 30% center;
}

.metric-card:nth-child(3) img {
  object-position: center bottom;
}

.metric-card:nth-child(4) img {
  object-position: 72% center;
}

.metric-card:nth-child(5) img {
  object-position: right center;
}

.metric-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.42)),
    rgba(16, 16, 16, 0.12);
}

.metric-content {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.metric-content strong {
  display: block;
  font-size: 52px;
  line-height: 0.98;
  font-weight: 900;
}

.metric-content span {
  display: block;
  max-width: 100%;
  margin-top: 14px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.15;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: normal;
}

.portal-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 50px;
}

.portal-card {
  display: block;
  min-height: 190px;
  padding: 34px;
  border: 1px solid #d6d6d6;
  text-decoration: none;
  color: #1f2933;
  background: white;
}

.portal-card:hover {
  border-color: #6b1f2b;
}

.portal-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.portal-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.contact-hero {
  padding: 110px 56px 90px;
  background:
    linear-gradient(90deg, #101010 0%, rgba(16, 16, 16, 0.92) 34%, rgba(16, 16, 16, 0.42) 66%, rgba(16, 16, 16, 0.12) 100%),
    url("edited\ boxes.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.contact-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  padding: 70px 56px 90px;
  background: #e3e6e8;
}

.contact-info-panel,
.contact-form {
  background: #ffffff;
  border: 1px solid #c6ccd1;
  padding: 34px;
}

.contact-label {
  margin: 0 0 24px;
  color: #6b7075;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-large-link {
  display: block;
  padding: 18px 0;
  border-top: 1px solid #d8dde1;
  color: #101010;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.contact-large-link:hover {
  color: #b18a00;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #101010;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #c5ccd1;
  border-radius: 0;
  background: #f8f9fa;
  color: #101010;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  min-width: 150px;
  padding: 16px 26px;
  border: 0;
  background: #101010;
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: #f7bf13;
  color: #101010;
}

.about-report-hero {
  padding: 110px 56px 88px;
  background:
    linear-gradient(90deg, #101010 0%, rgba(16, 16, 16, 0.92) 34%, rgba(16, 16, 16, 0.42) 66%, rgba(16, 16, 16, 0.12) 100%),
    url("outside.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.about-report-hero .eyebrow {
  color: #f7bf13;
}

.about-report-hero h1 {
  max-width: 1180px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-report-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  padding: 70px 56px 90px;
  background: #f7f7f5;
}

.about-index {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.about-index p {
  margin: 0 0 12px;
  color: #7b8085;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-index a {
  padding-top: 14px;
  border-top: 1px solid #c8cdd1;
  color: #101010;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.about-index a:hover {
  color: #b18a00;
}

.about-report-content {
  display: grid;
  gap: 28px;
}

.about-report-block {
  display: grid;
  grid-template-columns: 70px 0.55fr 1fr;
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid #c8cdd1;
}

.about-report-block span {
  color: #b18a00;
  font-weight: 900;
}

.about-report-block h2 {
  margin: 0;
  color: #101010;
  font-size: 34px;
  text-transform: uppercase;
}

.about-report-block p {
  margin: 0;
  color: #3e454b;
  font-size: 20px;
  line-height: 1.55;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-card-grid article {
  padding: 28px;
  border: 1px solid #c8cdd1;
  background: #ffffff;
}

.about-card-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #101010;
  font-size: 23px;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-card-grid p {
  margin: 0;
  color: #4f5661;
  font-size: 17px;
  line-height: 1.45;
}

.about-next {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 40px;
  background: #101010;
  color: #ffffff;
}

.about-next h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.about-next a {
  min-width: 170px;
  padding: 16px 22px;
  background: #f7bf13;
  color: #101010;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.services-hero {
  padding: 110px 56px 88px;
  background:
    linear-gradient(90deg, #101010 0%, rgba(16, 16, 16, 0.92) 34%, rgba(16, 16, 16, 0.42) 66%, rgba(16, 16, 16, 0.12) 100%),
    url("schmidtty.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.services-hero h1 {
  max-width: 1050px;
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  text-transform: uppercase;
}

.services-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: #d8dde1;
  font-size: 22px;
  line-height: 1.45;
}

.services-overview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  padding: 74px 56px;
  background: #e3e6e8;
}

.services-overview-copy h2,
.section-title-row h2,
.services-audience h2,
.services-cta h2 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}

.services-steps {
  display: grid;
  gap: 18px;
}

.services-steps article {
  display: grid;
  grid-template-columns: 56px 0.75fr 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid #c4cbd0;
}

.services-steps span {
  color: #b18a00;
  font-weight: 900;
}

.services-steps strong {
  color: #101010;
  font-size: 22px;
  text-transform: uppercase;
}

.services-steps p {
  margin: 0;
  color: #4f5661;
  font-size: 17px;
  line-height: 1.45;
}

.service-products {
  padding: 80px 56px;
  background: #f7f7f5;
}

.section-title-row {
  margin-bottom: 34px;
}

.service-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-product-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid #c8cdd1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.service-product-card > span {
  color: #b18a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-product-card h3 {
  margin: 34px 0 18px;
  color: #101010;
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-product-card p {
  margin: 0 0 24px;
  color: #4f5661;
  font-size: 18px;
  line-height: 1.45;
}

.service-product-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-product-card li {
  padding: 13px 0;
  border-top: 1px solid #d8dde1;
  color: #101010;
  font-weight: 800;
}

.services-audience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 76px 56px;
  background: #ffffff;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.audience-list span {
  padding: 14px 18px;
  border: 1px solid #c8cdd1;
  background: #f7f7f5;
  color: #101010;
  font-weight: 900;
  text-transform: uppercase;
}

.services-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 56px;
  background: #f7bf13;
}

.services-cta a {
  min-width: 170px;
  padding: 16px 22px;
  background: #101010;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 70px;
  padding: 86px 56px 110px;
  background: #171717;
  color: #ffffff;
}

.footer-logo img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  opacity: 0.92;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 46px;
  color: #747474;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: #f4f4f4;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-contact a {
  color: #8f8f8f;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #f7bf13;
}

.footer-card {
  align-self: start;
  display: grid;
  border: 1px solid #2b2b2b;
  color: #8f8f8f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  display: block;
}

.footer-card span {
  padding: 28px 30px;
}

.chad-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  font-family: Arial, Helvetica, sans-serif;
}

.chad-toggle {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #f7bf13;
  color: #101010;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.chad-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(340px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid #d4d8dc;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chad-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.chad-header strong {
  color: #101010;
  font-size: 20px;
}

.chad-close {
  border: 0;
  background: transparent;
  color: #4f5661;
  font-size: 20px;
  cursor: pointer;
}

.chad-panel p {
  margin: 0 0 14px;
  color: #4f5661;
  line-height: 1.4;
}

.chad-panel label {
  display: block;
  margin-bottom: 6px;
  color: #101010;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.chad-panel textarea {
  width: 100%;
  resize: vertical;
  padding: 12px;
  border: 1px solid #cbd0d5;
  border-radius: 6px;
  font: inherit;
}

.chad-send {
  display: block;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 6px;
  background: #101010;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 800px) {
  .top-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .banner-logo-img {
    height: 76px;
  }

  .menu-panel-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 28px;
  }

  .menu-links,
  .menu-contact {
    padding-left: 0;
    border-left: 0;
  }

  .menu-contact {
    justify-items: start;
    text-align: left;
  }

  .inquiry-button {
    min-width: auto;
  }

  .hero {
    padding: 70px 28px;
    min-height: 560px;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.55;
  }

  .hero h1 {
    font-size: 40px;
  }

  .portal-section {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .contact-hero {
    padding: 70px 28px 56px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    padding: 40px 28px 60px;
  }

  .contact-info-panel,
  .contact-form {
    padding: 24px;
  }

  .about-report-hero {
    padding: 70px 28px 56px;
  }
}
