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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 48px 56px 40px;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 120px;
  height: auto;
}

.triptych {
  display: block;
}

.triptych-progress {
  display: none;
  height: 4px;
  gap: 6px;
  align-items: center;
  margin-bottom: 16px;
}

.triptych-progress-segment {
  flex: 1;
  height: 100%;
  background: #e6e2dc;
  border-radius: 999px;
  transition: background 300ms ease;
}

.triptych-progress-segment.is-active {
  background: #5a381f;
}

.triptych-viewport {
  overflow: visible;
}

.triptych-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 32px;
  align-items: start;
}

.panel {
  text-align: center;
}

.panel-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f3ef;
  display: block;
  margin: 0 auto 16px;
  /* border-radius: 6px; */
}

.panel-label {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #2a2a2a;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #1b4f94;
  font-size: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-row p {
  margin: 0;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: #1b4f94;
}

.footer {
  margin-top: auto;
  color: #8b8f96;
  font-size: 11px;
  line-height: 1.5;
  position: relative;
}

.disclaimer-link {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 11px;
  color: #8b8f96;
  text-decoration: underline;
}

.disclaimer {
  margin: 24px 0 0;
  /* max-width: 860px; */
  background: #5a381f;
  color: #f6f1eb;
  padding: 14px 16px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .page {
    padding: 32px 24px;
  }

  .triptych-progress {
    display: flex;
  }

  .triptych-viewport {
    overflow: hidden;
  }

  .triptych-track {
    display: flex;
    gap: 0;
    transition: transform 600ms ease;
    will-change: transform;
  }

  .panel {
    flex: 0 0 100%;
  }

  .panel-image {
    max-width: 360px;
  }

  .disclaimer-link {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }
}
